mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 02:22:26 +01:00
Fix 1 more warning reported by GCC
We don't write in correct buffer size in analyze_block
This commit is contained in:
@ -971,8 +971,8 @@ std::string analyze_block(MapBlock *block)
|
||||
std::ostringstream desc;
|
||||
|
||||
v3s16 p = block->getPos();
|
||||
char spos[20];
|
||||
snprintf(spos, 20, "(%2d,%2d,%2d), ", p.X, p.Y, p.Z);
|
||||
char spos[25];
|
||||
snprintf(spos, sizeof(spos), "(%2d,%2d,%2d), ", p.X, p.Y, p.Z);
|
||||
desc<<spos;
|
||||
|
||||
switch(block->getModified())
|
||||
|
Reference in New Issue
Block a user