bandb/bantool.c: misc cleanup for compiler warning

bantool.c:149:4: warning: 'break' will never be executed
                 [-Wunreachable-code-break]
This commit is contained in:
Aaron Jones 2017-07-31 01:20:04 +00:00
parent 9b7cc82b90
commit 846629b388
No known key found for this signature in database
GPG key ID: 8AF0737488AB3012

View file

@ -146,7 +146,7 @@ main(int argc, char *argv[])
{ {
case 'h': case 'h':
print_help(EXIT_SUCCESS); print_help(EXIT_SUCCESS);
break; /* noreturn call above, this is unreachable */
case 'i': case 'i':
flag.none = NO; flag.none = NO;
flag.import = YES; flag.import = YES;