From dc2bfe10a8f6f2fbb52b646186c5624b979f0a55 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 9 Sep 2025 10:05:29 +0200 Subject: [PATCH] Uppercase hexdup --- freelist/hexdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freelist/hexdump.c b/freelist/hexdump.c index 36db76e..cdf2121 100644 --- a/freelist/hexdump.c +++ b/freelist/hexdump.c @@ -14,7 +14,7 @@ void hexdump(const void *data, size_t size) { // Print hex bytes for (j = 0; j < 16; j++) { if (i + j < size) { - printf("%02x ", p[i + j]); + printf("%02X ", p[i + j]); } else { printf(" "); // padding for incomplete lines }