summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index e954df4e..2ce47ac6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -615,14 +615,16 @@ static void parseOptions(int argc, char *argv[], Options &options)
{ 0 }
};
- while (optind < argc) {
+ while (optind < argc)
+ {
int result = getopt_long(argc, argv, optstring, long_options, NULL);
if (result == -1)
break;
- switch (result) {
+ switch (result)
+ {
case 'C':
options.configPath = optarg;
break;