open - fix warning with possible uninitted var

@fix
This commit is contained in:
Carsten Haitzler 2022-05-18 12:53:08 +01:00
parent 51e09f2a77
commit 7c6adbd6fe
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ main(int argc, char *argv[])
ECORE_GETOPT_VALUE_NONE ECORE_GETOPT_VALUE_NONE
}; };
int args; int args;
char **cmds; char **cmds = NULL;
args = ecore_getopt_parse(&options, values, argc, argv); args = ecore_getopt_parse(&options, values, argc, argv);
if (args < 0) if (args < 0)