aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 1d6f9c58..7d1d300d 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.192 2010/07/25 15:03:37 roberto Exp roberto $ 2** $Id: lua.c,v 1.193 2010/10/18 16:06:33 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -428,7 +428,7 @@ static int handle_luainit (lua_State *L) {
428 428
429 429
430static int pmain (lua_State *L) { 430static int pmain (lua_State *L) {
431 int argc = lua_tointeger(L, 1); 431 int argc = (int)lua_tointeger(L, 1);
432 char **argv = (char **)lua_touserdata(L, 2); 432 char **argv = (char **)lua_touserdata(L, 2);
433 int script; 433 int script;
434 int has_i = 0, has_v = 0, has_e = 0; 434 int has_i = 0, has_v = 0, has_e = 0;