diff options
Diffstat (limited to 'apps/plugins/lua')
| -rw-r--r-- | apps/plugins/lua/luaconf.h | 2 | ||||
| -rw-r--r-- | apps/plugins/lua/lundump.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lua/luaconf.h b/apps/plugins/lua/luaconf.h index 109e680..3ed495b 100644 --- a/apps/plugins/lua/luaconf.h +++ b/apps/plugins/lua/luaconf.h @@ -758,6 +758,6 @@ union luai_Cast { double l_d; long l_l; }; */ #include "rockconf.h" - +#define LUAC_TRUST_BINARIES #endif diff --git a/apps/plugins/lua/lundump.c b/apps/plugins/lua/lundump.c index 8010a45..6a8422d 100644 --- a/apps/plugins/lua/lundump.c +++ b/apps/plugins/lua/lundump.c @@ -28,8 +28,8 @@ typedef struct { } LoadState; #ifdef LUAC_TRUST_BINARIES -#define IF(c,s) -#define error(S,s) +#define IF(c,s) if (c) error(S,s) +#define error(S,s) {(void) S; (void) s;} #else #define IF(c,s) if (c) error(S,s) |