summaryrefslogtreecommitdiffstats
path: root/common/debug.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-05-23 20:17:13 +0200
committerGravatar Martin Szulecki2013-05-23 20:17:13 +0200
commitcfa1eb9f7d472ad0248e60000133b8f23a5f8125 (patch)
tree925900325315a7e9243afdefc92b4bbb7653d425 /common/debug.c
parentb1c41365ef0dbf294b12b691d48d6988e578d66d (diff)
downloadlibimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.gz
libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.bz2
Silence compiler warnings for win32 builds
Diffstat (limited to 'common/debug.c')
-rw-r--r--common/debug.c2
1 files changed, 1 insertions, 1 deletions
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++) {