Fix format specifier that doesnt exist in neptune

This commit is contained in:
Imbus 2025-10-01 02:51:37 +02:00
parent 1ed4b57882
commit 795cf84a07

View file

@ -8,7 +8,7 @@ void hexdump(const void *data, size_t size) {
for (i = 0; i < size; i += 16) { for (i = 0; i < size; i += 16) {
// Print offset // Print offset
kprintf("%08zx ", i); kprintf("%08x ", i);
// Print hex bytes // Print hex bytes
for (j = 0; j < 16; j++) { for (j = 0; j < 16; j++) {