diff options
| author | 2013-05-23 20:17:13 +0200 | |
|---|---|---|
| committer | 2013-05-23 20:17:13 +0200 | |
| commit | cfa1eb9f7d472ad0248e60000133b8f23a5f8125 (patch) | |
| tree | 925900325315a7e9243afdefc92b4bbb7653d425 /common/debug.c | |
| parent | b1c41365ef0dbf294b12b691d48d6988e578d66d (diff) | |
| download | libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.gz libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.bz2 | |
Silence compiler warnings for win32 builds
Diffstat (limited to 'common/debug.c')
| -rw-r--r-- | common/debug.c | 2 |
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) | |||
| 116 | fprintf(stderr, " "); | 116 | fprintf(stderr, " "); |
| 117 | continue; | 117 | continue; |
| 118 | } | 118 | } |
| 119 | fprintf(stderr, "%02hhx ", *(data + i + j)); | 119 | fprintf(stderr, "%02x ", *(data + i + j)); |
| 120 | } | 120 | } |
| 121 | fprintf(stderr, " | "); | 121 | fprintf(stderr, " | "); |
| 122 | for (j = 0; j < 16; j++) { | 122 | for (j = 0; j < 16; j++) { |
