bin/hd: Fix format strings through B_PRI macros

This commit is contained in:
Alexander von Gluck IV
2015-07-19 09:31:03 -05:00
parent 3f06c69ed4
commit 46e1214196
+1 -1
View File
@@ -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));