summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index 5aadfd2210..d89f48fa39 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -185,7 +185,7 @@ static inline void rli_init(lua_State *L)
185 * ----------------------------- 185 * -----------------------------
186 */ 186 */
187 187
188#define RB_WRAP(M) static int rock_##M(lua_State *L) 188#define RB_WRAP(M) static int rock_##M(lua_State UNUSED_ATTR *L)
189#define SIMPLE_VOID_WRAPPER(func) RB_WRAP(func) { (void)L; func(); return 0; } 189#define SIMPLE_VOID_WRAPPER(func) RB_WRAP(func) { (void)L; func(); return 0; }
190 190
191/* Helper function for opt_viewport */ 191/* Helper function for opt_viewport */