Fixed several warnings with fallthrough on gcc 8

This commit is contained in:
Jan Möbius
2019-01-15 11:07:39 +01:00
parent 3d799d72c6
commit 76c61df596
10 changed files with 9 additions and 9 deletions

View File

@@ -276,7 +276,7 @@ int main(int argc, char **argv)
{
case 'v': verbose = true; break;
case 'o': ofname = optarg; break;
case 'h': usage_and_exit(0);
case 'h': usage_and_exit(0); break;
default: usage_and_exit(1);
}
}