From c85dc2c7a75a78c497c55ce5ad276f8f9fa04e17 Mon Sep 17 00:00:00 2001 From: kvik Date: Fri, 13 Aug 2021 17:58:00 +0000 Subject: [PATCH] misc: use usize instead of lua_Unsigned --- base/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/misc.c b/base/misc.c index 0bac849..f1ab5fe 100644 --- a/base/misc.c +++ b/base/misc.c @@ -4,7 +4,7 @@ static int p9_cleanname(lua_State *L) { const char *path, *p; - lua_Unsigned len; + usize len; luaL_Buffer b; path = luaL_checklstring(L, 1, &len); -- 2.38.4