Fix 1 more warning reported by GCC

We don't write in correct buffer size in analyze_block
This commit is contained in:
Loic Blot 2017-06-20 00:19:29 +02:00
parent b32f36bf34
commit b2977e7691
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987
1 changed files with 2 additions and 2 deletions

View File

@ -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())