Browse Source

small bug: format '%d' for lua_Number argument

pull/9/head
Roberto Ierusalimschy 13 years ago
parent
commit
e320b5b672
  1. 4
      lauxlib.c

4
lauxlib.c

@ -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
** 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))
luaL_error(L, "multiple Lua VMs detected");
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);
/* check conversions number -> integer types */
lua_pushnumber(L, -(lua_Number)0x1234);

Loading…
Cancel
Save