aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index eed8be8a..fdda8be8 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.103 2002/08/13 15:04:59 roberto Exp roberto $ 2** $Id: lua.c,v 1.104 2002/09/05 19:45:42 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*/
@@ -337,7 +337,7 @@ static int handle_argv (char *argv[], int *interactive) {
337 return file_input(filename); /* stop scanning arguments */ 337 return file_input(filename); /* stop scanning arguments */
338 } 338 }
339 } 339 }
340 return EXIT_SUCCESS; 340 return 0;
341} 341}
342 342
343 343