diff --git a/kernel/src/main.c b/kernel/src/main.c index d2d1a5e..318f28c 100644 --- a/kernel/src/main.c +++ b/kernel/src/main.c @@ -11,7 +11,7 @@ void kmain() { printf("Bootloader type: %s (%s %s)\n", boot_info.boot_protocol, boot_info.bootloader_name, boot_info.bootloader_ver); printf("System time: %d\n", boot_info.epoch); printf("Usable memory: %h (at %x)\n", boot_info.usable.len, boot_info.usable.start); - printf("Cmdline: %s", boot_info.cmdline); + printf("Cmdline: %s\n", boot_info.cmdline); vga_setcolor(VGA_DARK_GRAY); vga_write_elsewhere("(c) Quinten Kock 2020 (MIT License)", 24, 0);