summaryrefslogtreecommitdiffstats
path: root/common/debug.c
diff options
context:
space:
mode:
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++) {