print more newlines
This commit is contained in:
parent
b99936912c
commit
927075585c
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue