From: Bean Date: Mon, 23 Apr 2012 15:11:49 +0000 (+0200) Subject: * util/grub-fstest.c (fstest): Add missing break. X-Git-Tag: 2.00~304 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c557d30ef5bcb03489fd63cc542a12efa9e5527;p=thirdparty%2Fgrub.git * util/grub-fstest.c (fstest): Add missing break. --- diff --git a/ChangeLog b/ChangeLog index 8d03e4be5..906fe1664 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-04-23 Bean + + * util/grub-fstest.c (fstest): Add missing break. + 2012-04-22 Samuel Thibault Fix hurd build. diff --git a/util/grub-fstest.c b/util/grub-fstest.c index 5acb680eb..c17a4ab78 100644 --- a/util/grub-fstest.c +++ b/util/grub-fstest.c @@ -389,9 +389,11 @@ fstest (int n) case CMD_BLOCKLIST: execute_command ("blocklist", n, args); grub_printf ("\n"); + break; case CMD_TESTLOAD: execute_command ("testload", n, args); grub_printf ("\n"); + break; case CMD_XNU_UUID: { grub_device_t dev;