From 460a35cbcb33fbc56f5a658b96a793b9bb8963e9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 28 Apr 2023 10:33:53 -0300 Subject: New type name 'uint' (unsigned int) --- lptree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lptree.c') diff --git a/lptree.c b/lptree.c index ff5cb9d..dcee27e 100644 --- a/lptree.c +++ b/lptree.c @@ -736,7 +736,7 @@ static int lp_utfr (lua_State *L) { lua_Unsigned to = (lua_Unsigned)luaL_checkinteger(L, 2); luaL_argcheck(L, from <= to, 2, "empty range"); if (to <= 0x7f) { /* ascii range? */ - unsigned int f; + uint f; byte buff[CHARSETSIZE]; /* code it as a regular charset */ clearset(buff); for (f = (int)from; f <= to; f++) -- cgit v1.2.3-55-g6feb