summaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liolib.c b/liolib.c
index 2d901f93..f61e1823 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.27 2002/12/04 15:27:17 roberto Exp roberto $ 2** $Id: liolib.c,v 2.28 2002/12/04 17:38:31 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -732,6 +732,6 @@ LUALIB_API int lua_iolibopen (lua_State *L) {
732 registerfile(L, stdin, "stdin", IO_INPUT); 732 registerfile(L, stdin, "stdin", IO_INPUT);
733 registerfile(L, stdout, "stdout", IO_OUTPUT); 733 registerfile(L, stdout, "stdout", IO_OUTPUT);
734 registerfile(L, stderr, "stderr", NULL); 734 registerfile(L, stderr, "stderr", NULL);
735 return 0; 735 return 1;
736} 736}
737 737