small bug: format '%d' for lua_Number argument
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lauxlib.c,v 1.238 2011/11/30 12:58:57 roberto Exp roberto $
|
** $Id: lauxlib.c,v 1.239 2011/12/02 13:25:57 roberto Exp roberto $
|
||||||
** Auxiliary functions for building Lua libraries
|
** Auxiliary functions for building Lua libraries
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@@ -944,7 +944,7 @@ LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver) {
|
|||||||
if (v != lua_version(NULL))
|
if (v != lua_version(NULL))
|
||||||
luaL_error(L, "multiple Lua VMs detected");
|
luaL_error(L, "multiple Lua VMs detected");
|
||||||
else if (*v != ver)
|
else if (*v != ver)
|
||||||
luaL_error(L, "version mismatch: app. needs %d, Lua core provides %f",
|
luaL_error(L, "version mismatch: app. needs %f, Lua core provides %f",
|
||||||
ver, *v);
|
ver, *v);
|
||||||
/* check conversions number -> integer types */
|
/* check conversions number -> integer types */
|
||||||
lua_pushnumber(L, -(lua_Number)0x1234);
|
lua_pushnumber(L, -(lua_Number)0x1234);
|
||||||
|
|||||||
Reference in New Issue
Block a user