This commit is contained in:
Wolfgang Hottgenroth 2021-02-11 11:00:30 +01:00
parent ef2a45b225
commit ef22fd5459

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