diff options
Diffstat (limited to 'tests/libtest/lib552.c')
-rw-r--r-- | tests/libtest/lib552.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib552.c b/tests/libtest/lib552.c index 5082eb044..83797f3c2 100644 --- a/tests/libtest/lib552.c +++ b/tests/libtest/lib552.c @@ -46,11 +46,11 @@ void dump(const char *text, /* without the hex output, we can fit more on screen */ width = 0x40; - fprintf(stream, "%s, %d bytes (0x%x)\n", text, (int)size, (int)size); + fprintf(stream, "%s, %zu bytes (0x%zx)\n", text, size, size); for(i = 0; i<size; i += width) { - fprintf(stream, "%04x: ", (int)i); + fprintf(stream, "%04zx: ", i); if(!nohex) { /* hex not disabled, show it */ |