summaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index 41b193cf..67e54635 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 1.75 2002/02/07 17:25:12 roberto Exp roberto $ 2** $Id: lobject.c,v 1.76 2002/04/05 18:54:31 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -97,7 +97,7 @@ void luaO_verror (lua_State *L, const char *fmt, ...) {
97 va_start(argp, fmt); 97 va_start(argp, fmt);
98 vsprintf(buff, fmt, argp); 98 vsprintf(buff, fmt, argp);
99 va_end(argp); 99 va_end(argp);
100 luaD_error(L, buff); 100 luaD_runerror(L, buff);
101} 101}
102 102
103 103