This commit is contained in:
Wolfgang Hottgenroth 2021-02-11 11:00:30 +01:00
parent fbeb75fe7d
commit a1ed3911c8
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -308,7 +308,8 @@ int main(int argc, char **argv) {
char *configFilename = DEFAULT_CONFIG_FILENAME;
while ((int c = getopt(argc, argv, "f:")) != -1) {
int c;
while ((c = getopt(argc, argv, "f:")) != -1) {
switch (c) {
case 'f':
configFilename = strdup(optarg);