Fix splint warning

This commit is contained in:
Dale Weiler 2013-01-30 01:38:37 +00:00
parent 76614b311e
commit f3c5c40104

View file

@ -3390,13 +3390,10 @@ static bool parse_directive_or_pragma_do(parser_t *parser, bool *pragma) {
}
return (type != PARSE_DIRECTIVE_ERROR);
default:
parseerror(parser, "invalid directive `%s`", parser_tokval(parser));
return false;
}
return true;
parseerror(parser, "invalid directive `%s`", parser_tokval(parser));
return false;
}
static bool parse_directive_or_pragma(parser_t *parser)