commit 30a411ab3cb70a1d20ff11e28505550dcd1027f2
parent 5bb5a1831d04735ecd241062fbbb47dd740ba5f5
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 24 Mar 2003 09:39:12 -0300
chars from zio are always unsigned
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llex.c b/llex.c
@@ -1,5 +1,5 @@
/*
-** $Id: llex.c,v 1.117 2002/12/04 17:38:31 roberto Exp roberto $
+** $Id: llex.c,v 1.118 2003/02/28 17:19:47 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -93,7 +93,7 @@ void luaX_syntaxerror (LexState *ls, const char *msg) {
const char *luaX_token2str (LexState *ls, int token) {
if (token < FIRST_RESERVED) {
- lua_assert(token == (char)token);
+ lua_assert(token == (unsigned char)token);
return luaO_pushfstring(ls->L, "%c", token);
}
else