diff --git a/stand/i386/gptzfsboot/zfsboot.c b/stand/i386/gptzfsboot/zfsboot.c index 4c8eae9b65e..72d791ad236 100644 --- a/stand/i386/gptzfsboot/zfsboot.c +++ b/stand/i386/gptzfsboot/zfsboot.c @@ -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(); + } } }