aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.c')
-rw-r--r--lauxlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 21575891..74fd74f3 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.270 2014/10/22 11:44:20 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.271 2014/10/25 11:50:46 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -938,8 +938,8 @@ static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) {
938 938
939 939
940static int panic (lua_State *L) { 940static int panic (lua_State *L) {
941 luai_writestringerror("PANIC: unprotected error in call to Lua API (%s)\n", 941 lua_writestringerror("PANIC: unprotected error in call to Lua API (%s)\n",
942 lua_tostring(L, -1)); 942 lua_tostring(L, -1));
943 return 0; /* return to Lua to abort */ 943 return 0; /* return to Lua to abort */
944} 944}
945 945