From 7131aa85d6a89b4df1d90f33beffafe011c7b682 Mon Sep 17 00:00:00 2001 From: buffet Date: Wed, 17 Oct 2018 09:10:49 +0200 Subject: [PATCH] Unnecessary breaks are unnecessary --- src/kiwmi/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kiwmi/main.c b/src/kiwmi/main.c index 52fcf25..b9db2fd 100644 --- a/src/kiwmi/main.c +++ b/src/kiwmi/main.c @@ -20,11 +20,9 @@ main(int argc, char *argv[]) case 'h': printf("Usage: %s [-h|-v|-c ]\n", argv0); exit(EXIT_SUCCESS); - break; case 'v': printf("v" VERSION_STRING "\n"); exit(EXIT_SUCCESS); - break; case 'c': strncpy(config_path, optarg, sizeof(config_path)); break;