aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-src/windows.c')
-rw-r--r--util-src/windows.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/util-src/windows.c b/util-src/windows.c
index 9b79c662..a209539f 100644
--- a/util-src/windows.c
+++ b/util-src/windows.c
@@ -83,8 +83,7 @@ static const luaL_Reg Reg[] =
LUALIB_API int luaopen_util_windows(lua_State *L) {
lua_newtable(L);
luaL_register(L, NULL, Reg);
- lua_pushliteral(L, "version"); /** version */
lua_pushliteral(L, "-3.14");
- lua_settable(L,-3);
+ lua_setfield(L, -2, "version");
return 1;
}