From 37c5a3fa9efb55a389483c04dfa37fa1bf0a5096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petri=20H=C3=A4kkinen?= Date: Thu, 2 Nov 2023 16:18:04 +0200 Subject: [PATCH] Remove stray semicolon --- VM/include/lua.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VM/include/lua.h b/VM/include/lua.h index dd6d9169..0390de7c 100644 --- a/VM/include/lua.h +++ b/VM/include/lua.h @@ -375,7 +375,7 @@ LUA_API void lua_unref(lua_State* L, int ref); #define lua_pushliteral(L, s) lua_pushlstring(L, "" s, (sizeof(s) / sizeof(char)) - 1) #define lua_pushcfunction(L, fn, debugname) lua_pushcclosurek(L, fn, debugname, 0, NULL) #define lua_pushcclosure(L, fn, debugname, nup) lua_pushcclosurek(L, fn, debugname, nup, NULL) -#define lua_pushlightuserdata(L, p) lua_pushlightuserdatatagged(L, p, 0); +#define lua_pushlightuserdata(L, p) lua_pushlightuserdatatagged(L, p, 0) #define lua_setglobal(L, s) lua_setfield(L, LUA_GLOBALSINDEX, (s)) #define lua_getglobal(L, s) lua_getfield(L, LUA_GLOBALSINDEX, (s))