diff options
Diffstat (limited to 'apps/plugins/lua/rocklib_aux.pl')
| -rwxr-xr-x | apps/plugins/lua/rocklib_aux.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/lua/rocklib_aux.pl b/apps/plugins/lua/rocklib_aux.pl index 61e0115..9103fcc 100755 --- a/apps/plugins/lua/rocklib_aux.pl +++ b/apps/plugins/lua/rocklib_aux.pl @@ -133,7 +133,6 @@ print <<EOF #define _ROCKCONF_H_ /* We don't need strcmp() etc. wrappers */ #include "lua.h" -#include "rocklib.h" #include "lauxlib.h" #include "plugin.h" @@ -208,7 +207,7 @@ sub in_string sub in_bool { my ($name, $type, $pos) = @_; - return sprintf("\tbool %s = rli_checkboolean(L, %d);\n", $name, $pos) + return sprintf("\tbool %s = luaL_checkboolean(L, %d);\n", $name, $pos) } sub out_void |