gptzfsboot: boot prompt should emit new line on input
In case the user did input, we should put newline on screen to avoid possible error messages to get mixed with user input.
This commit is contained in:
@@ -320,10 +320,12 @@ main(void)
|
||||
else if (!auto_boot || !OPT_CHECK(RBX_QUIET))
|
||||
putchar('\n');
|
||||
auto_boot = 0;
|
||||
if (parse_cmd())
|
||||
if (parse_cmd()) {
|
||||
putchar('\a');
|
||||
else
|
||||
} else {
|
||||
putchar('\n');
|
||||
load();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user