From 927075585c9fdbd5fa721e0b33dd8c0f8b51afd0 Mon Sep 17 00:00:00 2001 From: Quinten Kock Date: Fri, 4 Dec 2020 04:56:21 +0100 Subject: [PATCH] print more newlines --- kernel/src/arch/x86/stivale2-parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/src/arch/x86/stivale2-parse.c b/kernel/src/arch/x86/stivale2-parse.c index b0b5e92..e0b7da3 100644 --- a/kernel/src/arch/x86/stivale2-parse.c +++ b/kernel/src/arch/x86/stivale2-parse.c @@ -37,10 +37,10 @@ void parse_stivale2(struct stivale2_struct *info) { } case STIVALE2_STRUCT_TAG_MODULES_ID: { struct stivale2_struct_tag_modules *m = (struct stivale2_struct_tag_modules *)tag; - printf("Modules tag (count: %d):", m->module_count); + printf("Modules tag (count: %d):\n", m->module_count); for (size_t i = 0; i < m->module_count; i++) { struct stivale2_module *me = &m->modules[i]; - printf("\t[%x+%x] %s", me->begin, me->end, me->string); + printf("\t[%x+%x] %s\n", me->begin, me->end, me->string); } break; }