print more newlines

This commit is contained in:
Quinten Kock 2020-12-04 04:56:21 +01:00
parent b99936912c
commit 927075585c
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}