mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-24 03:22:42 +00:00
add the backticks for a warning
This commit is contained in:
parent
c2925b61f2
commit
f0f9680774
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -2511,7 +2511,7 @@ static bool parser_do(parser_t *parser)
|
|||
ast_delete(fld);
|
||||
return false;
|
||||
} else {
|
||||
if (parsewarning(parser, WARN_FIELD_REDECLARED, "field %s has already been declared here: %s:%i",
|
||||
if (parsewarning(parser, WARN_FIELD_REDECLARED, "field `%s` has already been declared here: %s:%i",
|
||||
parser_tokval(parser), ast_ctx(oldex).file, (int)ast_ctx(oldex).line))
|
||||
{
|
||||
ast_delete(fld);
|
||||
|
|
Loading…
Reference in a new issue