From d6c2aedb359f801ca75fbfc77c562260686d2b7c Mon Sep 17 00:00:00 2001 From: Pawel Kolodziejski Date: Sat, 26 Jul 2008 18:11:55 +0000 Subject: [PATCH] fix compilation --- engine/lua/lmathlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/lua/lmathlib.cpp b/engine/lua/lmathlib.cpp index 5a41a73656f..7103869c4b3 100644 --- a/engine/lua/lmathlib.cpp +++ b/engine/lua/lmathlib.cpp @@ -111,7 +111,7 @@ static void math_rad (void) } static void math_frexp (void) { - int32 e; + int e; lua_pushnumber(frexp(luaL_check_number(1), &e)); lua_pushnumber(e); }