mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
Fix splint warning
This commit is contained in:
parent
76614b311e
commit
f3c5c40104
1 changed files with 2 additions and 5 deletions
7
parser.c
7
parser.c
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue