Unnecessary breaks are unnecessary

This commit is contained in:
buffet 2018-10-17 09:10:49 +02:00
parent af9ae8a563
commit 7131aa85d6

View file

@ -20,11 +20,9 @@ main(int argc, char *argv[])
case 'h': case 'h':
printf("Usage: %s [-h|-v|-c <config_path>]\n", argv0); printf("Usage: %s [-h|-v|-c <config_path>]\n", argv0);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
break;
case 'v': case 'v':
printf("v" VERSION_STRING "\n"); printf("v" VERSION_STRING "\n");
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
break;
case 'c': case 'c':
strncpy(config_path, optarg, sizeof(config_path)); strncpy(config_path, optarg, sizeof(config_path));
break; break;