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 7d1d300d..efb4ee2a 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.193 2010/10/18 16:06:33 roberto Exp roberto $ 2** $Id: lua.c,v 1.194 2010/10/25 19:01:37 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*/
@@ -185,7 +185,7 @@ static int docall (lua_State *L, int narg, int nres) {
185 185
186 186
187static void print_version (void) { 187static void print_version (void) {
188 printf("%s\n", LUA_COPYRIGHT); 188 luai_writestring(LUA_COPYRIGHT "\n", sizeof(LUA_COPYRIGHT) + 1);
189} 189}
190 190
191 191