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:
parent
9b7cc82b90
commit
846629b388
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue