set_string_arg: Remove unneccesary check for determining the return code.

This commit is contained in:
Michael Adam 2009-11-16 21:51:51 +01:00
parent 45a56e468d
commit a664dee4f6

View File

@ -387,7 +387,7 @@ static int set_string_arg (char **var, const char *line, regmatch_t * match)
*var = arg;
return *var ? 0 : -1;
return 0;
}
static int get_bool_arg (const char *line, regmatch_t * match)