aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.c')
-rw-r--r--lauxlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 9a3cf243..843843ce 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.260 2014/03/12 20:57:40 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.261 2014/04/01 18:55:06 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -966,12 +966,12 @@ LUALIB_API lua_State *luaL_newstate (void) {
966} 966}
967 967
968 968
969LUALIB_API void luaL_checkversion_ (lua_State *L, int ver, size_t sz) { 969LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz) {
970 const lua_Number *v = lua_version(L); 970 const lua_Number *v = lua_version(L);
971 if (v != lua_version(NULL)) 971 if (v != lua_version(NULL))
972 luaL_error(L, "multiple Lua VMs detected"); 972 luaL_error(L, "multiple Lua VMs detected");
973 else if (*v != ver) 973 else if (*v != ver)
974 luaL_error(L, "version mismatch: app. needs %d, Lua core provides %f", 974 luaL_error(L, "version mismatch: app. needs %f, Lua core provides %f",
975 ver, *v); 975 ver, *v);
976 /* check numeric types */ 976 /* check numeric types */
977 if (sz != LUAL_NUMSIZES) 977 if (sz != LUAL_NUMSIZES)