Unnecessary breaks are unnecessary
This commit is contained in:
parent
af9ae8a563
commit
7131aa85d6
1 changed files with 0 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue