From cfa1eb9f7d472ad0248e60000133b8f23a5f8125 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 23 May 2013 20:17:13 +0200 Subject: Silence compiler warnings for win32 builds --- common/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/debug.c') diff --git a/common/debug.c b/common/debug.c index 0bb87a2..67e2fc2 100644 --- a/common/debug.c +++ b/common/debug.c @@ -116,7 +116,7 @@ inline void debug_buffer(const char *data, const int length) fprintf(stderr, " "); continue; } - fprintf(stderr, "%02hhx ", *(data + i + j)); + fprintf(stderr, "%02x ", *(data + i + j)); } fprintf(stderr, " | "); for (j = 0; j < 16; j++) { -- cgit v1.1-32-gdbae