summaryrefslogtreecommitdiffstats
path: root/CommandLine.c
diff options
context:
space:
mode:
Diffstat (limited to 'CommandLine.c')
-rw-r--r--CommandLine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/CommandLine.c b/CommandLine.c
index 4a721a3d..d0c24e58 100644
--- a/CommandLine.c
+++ b/CommandLine.c
@@ -124,7 +124,8 @@ static CommandLineSettings parseArguments(const char* program, int argc, char**
int opt, opti=0;
/* Parse arguments */
while ((opt = getopt_long(argc, argv, "hVMCs:td:u::Up:F:H::", long_opts, &opti))) {
- if (opt == EOF) break;
+ if (opt == EOF)
+ break;
switch (opt) {
case 'h':
printHelpFlag(program);