summaryrefslogtreecommitdiffstats
path: root/apps/plugins/lua/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lundump.c')
-rw-r--r--apps/plugins/lua/lundump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lua/lundump.c b/apps/plugins/lua/lundump.c
index 8010a45795..6a8422de30 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)