mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
s/%d/%s/
This commit is contained in:
parent
319783e873
commit
7b96b0bd6d
1 changed files with 1 additions and 1 deletions
2
lexer.c
2
lexer.c
|
@ -1485,6 +1485,6 @@ int lex_do(lex_file *lex)
|
|||
return (lex->tok.ttype = ch);
|
||||
}
|
||||
|
||||
lexerror(lex, "unknown token: `%d`", lex->tok.value);
|
||||
lexerror(lex, "unknown token: `%s`", lex->tok.value);
|
||||
return (lex->tok.ttype = TOKEN_ERROR);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue