Split statements that should go onto multiple lines

This commit is contained in:
Benny Baumann
2021-07-14 19:11:18 +02:00
committed by BenBE
parent 3bc73aa088
commit e7f8d7bcc9
13 changed files with 36 additions and 14 deletions

View File

@ -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);