Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Use fixed-width format specifiers in serializeStructToString
- Loading branch information
Showing
with
4 additions
and
3 deletions.
-
+4
−3
src/util/serialize.cpp
|
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
#include "../exceptions.h" |
|
|
#include "../irrlichttypes.h" |
|
|
|
|
|
#include <inttypes.h> // For PRIxN, cinttypes is C++11-only |
|
|
#include <sstream> |
|
|
#include <iomanip> |
|
|
#include <vector> |
|
@@ -416,19 +417,19 @@ bool serializeStructToString(std::string *outstr, |
|
|
if (width == 16) { |
|
|
bufpos += PADDING(bufpos, u16); |
|
|
nprinted = snprintf(sbuf + pos, sbuflen, |
|
|
is_unsigned ? "%u, " : "%d, ", |
|
|
is_unsigned ? "%" PRIu16 ", " : "%" PRIi16 ", ", |
|
|
*((u16 *)bufpos)); |
|
|
bufpos += sizeof(u16); |
|
|
} else if (width == 32) { |
|
|
bufpos += PADDING(bufpos, u32); |
|
|
nprinted = snprintf(sbuf + pos, sbuflen, |
|
|
is_unsigned ? "%u, " : "%d, ", |
|
|
is_unsigned ? "%" PRIu32 ", " : "%" PRIi32 ", ", |
|
|
*((u32 *)bufpos)); |
|
|
bufpos += sizeof(u32); |
|
|
} else if (width == 64) { |
|
|
bufpos += PADDING(bufpos, u64); |
|
|
nprinted = snprintf(sbuf + pos, sbuflen, |
|
|
is_unsigned ? "%llu, " : "%lli, ", |
|
|
is_unsigned ? "%" PRIu64 ", " : "%" PRIi64 ", ", |
|
|
*((u64 *)bufpos)); |
|
|
bufpos += sizeof(u64); |
|
|
} |
|
|
This comment has been minimized.
This comment has been minimized.
I've reverted this commit. It should work now.