Commit ade1b3cb authored by Rémi Duraffort's avatar Rémi Duraffort

lua: fix fonction prototype (should return a boolean).

parent d80fc2d2
...@@ -73,7 +73,7 @@ static inline void lua_Dbg( vlc_object_t * p_this, const char * ppz_fmt, ... ) ...@@ -73,7 +73,7 @@ static inline void lua_Dbg( vlc_object_t * p_this, const char * ppz_fmt, ... )
/***************************************************************************** /*****************************************************************************
* Functions that should be in lua ... but aren't for some obscure reason * Functions that should be in lua ... but aren't for some obscure reason
*****************************************************************************/ *****************************************************************************/
static inline int luaL_checkboolean( lua_State *L, int narg ) static inline bool luaL_checkboolean( lua_State *L, int narg )
{ {
luaL_checktype( L, narg, LUA_TBOOLEAN ); /* can raise an error */ luaL_checktype( L, narg, LUA_TBOOLEAN ); /* can raise an error */
return lua_toboolean( L, narg ); return lua_toboolean( L, narg );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment