- 'unsigned int' -> 'unsigned'
- Some explicit casts to avoid warnings
- Test avoids printing the value of 'fail' (which may not be nil)
This commit is contained in:
Roberto Ierusalimschy
2024-03-13 09:20:34 -03:00
parent cc2b66c856
commit 52aa2b5d24
4 changed files with 5 additions and 6 deletions

View File

@@ -100,7 +100,7 @@ LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s);
LUALIB_API lua_State *(luaL_newstate) (void);
LUALIB_API unsigned int luaL_makeseed (lua_State *L);
LUALIB_API unsigned luaL_makeseed (lua_State *L);
LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx);