aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-13 09:20:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-13 09:20:34 -0300
commit52aa2b5d24c560fb4d7a642971571ff9cbeabfcd (patch)
treea95b9c94c3a526ad85ebb26f910692d93b20888b /lauxlib.h
parentcc2b66c85687b095e68304c010b59851ca4093e1 (diff)
downloadlua-52aa2b5d24c560fb4d7a642971571ff9cbeabfcd.tar.gz
lua-52aa2b5d24c560fb4d7a642971571ff9cbeabfcd.tar.bz2
lua-52aa2b5d24c560fb4d7a642971571ff9cbeabfcd.zip
Details
- 'unsigned int' -> 'unsigned' - Some explicit casts to avoid warnings - Test avoids printing the value of 'fail' (which may not be nil)
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 0ee9a572..3c370686 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -100,7 +100,7 @@ LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s);
100 100
101LUALIB_API lua_State *(luaL_newstate) (void); 101LUALIB_API lua_State *(luaL_newstate) (void);
102 102
103LUALIB_API unsigned int luaL_makeseed (lua_State *L); 103LUALIB_API unsigned luaL_makeseed (lua_State *L);
104 104
105LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx); 105LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx);
106 106