From 846629b3883652ea3b5fa58d67dcc1e8211adf39 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Mon, 31 Jul 2017 01:20:04 +0000 Subject: [PATCH] bandb/bantool.c: misc cleanup for compiler warning bantool.c:149:4: warning: 'break' will never be executed [-Wunreachable-code-break] --- bandb/bantool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bandb/bantool.c b/bandb/bantool.c index e3c112b2..d6e84a60 100644 --- a/bandb/bantool.c +++ b/bandb/bantool.c @@ -146,7 +146,7 @@ main(int argc, char *argv[]) { case 'h': print_help(EXIT_SUCCESS); - break; + /* noreturn call above, this is unreachable */ case 'i': flag.none = NO; flag.import = YES;