diff options
Diffstat (limited to 'docs/examples/debug.c')
-rw-r--r-- | docs/examples/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/debug.c b/docs/examples/debug.c index 554eb3ec6..48a3fd5d0 100644 --- a/docs/examples/debug.c +++ b/docs/examples/debug.c @@ -44,12 +44,12 @@ void dump(const char *text, /* without the hex output, we can fit more on screen */ width = 0x40; - fprintf(stream, "%s, %10.10ld bytes (0x%8.8lx)\n", - text, (long)size, (long)size); + fprintf(stream, "%s, %10.10lu bytes (0x%8.8lx)\n", + text, size, size); for(i = 0; i<size; i += width) { - fprintf(stream, "%4.4lx: ", (long)i); + fprintf(stream, "%4.4lx: ", i); if(!nohex) { /* hex not disabled, show it */ |