mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-13 13:32:46 +00:00
Remove debug info from parse error.
This commit is contained in:
parent
bca1a7143d
commit
4c1c1bc051
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -4676,7 +4676,7 @@ static ast_value *parse_parameter_list(parser_t *parser, ast_value *var)
|
|||
}
|
||||
} else {
|
||||
if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC && param->name[0] == '<') {
|
||||
parseerror(parser, "parameter name omitted %s %d", param->name, vec_size(params));
|
||||
parseerror(parser, "parameter name omitted");
|
||||
goto on_error;
|
||||
}
|
||||
vec_push(params, param);
|
||||
|
|
Loading…
Reference in a new issue