From 4bde2c79a3cd21605a24a141676542f5655ed1c4 Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Fri, 15 Oct 2021 11:57:03 +0200 Subject: [PATCH] [lonetix/lexer] Minor style fix in function signature --- lonetix/include/df/lexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lonetix/include/df/lexer.h b/lonetix/include/df/lexer.h index efaba04..ff33159 100644 --- a/lonetix/include/df/lexer.h +++ b/lonetix/include/df/lexer.h @@ -452,7 +452,7 @@ char *Lex_MatchTokenType(Lex *p, Tok *dest, int type, unsigned subtype); */ char *Lex_CheckToken(Lex *p, const char *tok); /// Similar to `Lex_CheckToken()`, but matches by token `type` and `subtype`. -char *Lex_CheckTokenType(Lex *, Tok *dest, int type, unsigned subtype); +char *Lex_CheckTokenType(Lex *p, Tok *dest, int type, unsigned subtype); /** * \brief Peek next token from `p` and test whether it matches with `tok`.