From 46e1214196b111c44b011889315edd014804c8ec Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sun, 19 Jul 2015 09:31:03 -0500 Subject: [PATCH] bin/hd: Fix format strings through B_PRI macros --- src/bin/hd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/hd.c b/src/bin/hd.c index b8b74d76ab..cce6ed8401 100644 --- a/src/bin/hd.c +++ b/src/bin/hd.c @@ -138,7 +138,7 @@ dump_file(FILE *fp) void display(uint32 offset, uint8 *data) { - printf("%08lx ", offset); + printf("%08" B_PRIx32 " ", offset); printf(" %s ", hexbytes(data)); printf("%16s ", printable(data));