Commit 99fb2555 authored by unknown's avatar unknown

followup - error fixed

parent b0e5cbd5
...@@ -367,8 +367,9 @@ int handle_options(int *argc, char ***argv, ...@@ -367,8 +367,9 @@ int handle_options(int *argc, char ***argv,
/* Check if there are more arguments after this one */ /* Check if there are more arguments after this one */
if (!pos[1]) if (!pos[1])
{ {
if (optp->var_type == GET_BOOL && optp->arg_type == OPT_ARG) if (optp->arg_type == OPT_ARG)
{ {
if (optp->var_type == GET_BOOL)
*((my_bool*) optp->value)= (my_bool) 1; *((my_bool*) optp->value)= (my_bool) 1;
get_one_option(optp->id, optp, argument); get_one_option(optp->id, optp, argument);
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment