From 183f9bca41fc6ac233c4e09d7c206942b2b60a77 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 27 Jan 2020 10:54:39 -0500 Subject: [PATCH] quiet a couple of warnings ..\src\nhlua.c(893): warning C4113: 'int (__cdecl *)()' differs in parameter lists from 'lua_CFunction' ..\src\nhlua.c(894): warning C4113: 'int (__cdecl *)()' differs in parameter lists from 'lua_CFunction' --- src/nhlua.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nhlua.c b/src/nhlua.c index bafefbfc2..2e9729195 100644 --- a/src/nhlua.c +++ b/src/nhlua.c @@ -32,6 +32,8 @@ static int FDECL(nhl_ing_suffix, (lua_State *)); static int FDECL(nhl_an, (lua_State *)); static int FDECL(nhl_meta_u_index, (lua_State *)); static int FDECL(nhl_meta_u_newindex, (lua_State *)); +static int FDECL(nhl_u_clear_inventory, (lua_State *)); +static int FDECL(nhl_u_giveobj, (lua_State *)); static int FDECL(traceback_handler, (lua_State *)); void -- 2.40.0