diff options
| author | 2012-02-29 16:41:55 -0800 | |
|---|---|---|
| committer | 2012-02-29 16:41:55 -0800 | |
| commit | 502695d5283917d4c9e5a549d01c431dea4b1a5c (patch) | |
| tree | 80c104998957bd8622727777bd812dcadf9073ac /libs/utils/Debug.cpp | |
| parent | 71dea373f40ef4d35bb8b2f503693f390d1316da (diff) | |
| parent | d9df224570325c41f9aa9f3a25bf4baf828065f2 (diff) | |
Merge "Fixed several 64-bit porting issues"
Diffstat (limited to 'libs/utils/Debug.cpp')
| -rw-r--r-- | libs/utils/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/utils/Debug.cpp b/libs/utils/Debug.cpp index f7988ecf1d16..e8ac983ead52 100644 --- a/libs/utils/Debug.cpp +++ b/libs/utils/Debug.cpp @@ -199,7 +199,7 @@ void printHexData(int32_t indent, const void *buf, size_t length, if ((int32_t)length < 0) { if (singleLineBytesCutoff < 0) func(cookie, "\n"); char buf[64]; - sprintf(buf, "(bad length: %d)", length); + sprintf(buf, "(bad length: %zu)", length); func(cookie, buf); return; } |