Skip to content

Commit f0cacb3

Browse files
committed
fixup! fix printf-type specifiers
1 parent c649036 commit f0cacb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/kernel/multiboot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void kernel::multiboot(uint32_t boot_addr)
169169
uint32_t mem_high_end = mem_high_start + (info->mem_upper * 1024) - 1;
170170
uint32_t mem_high_kb = info->mem_upper;
171171

172-
INFO2("* Valid memory (%i KiB):", mem_low_kb + mem_high_kb);
172+
INFO2("* Valid memory ({} KiB):", mem_low_kb + mem_high_kb);
173173
INFO2(" 0x{:08x} - 0x{:08x} ({} KiB)", mem_low_start, mem_low_end, mem_low_kb);
174174
INFO2(" 0x{:08x} - 0x{:08x} ({} KiB)", mem_high_start, mem_high_end, mem_high_kb);
175175
INFO2("");

0 commit comments

Comments
 (0)