aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lobject.c b/lobject.c
index ebf3cf05..8e29b383 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.91 2014/10/04 22:57:10 roberto Exp roberto $ 2** $Id: lobject.c,v 2.92 2014/10/10 22:23:04 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*/
@@ -415,9 +415,8 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
415 break; 415 break;
416 } 416 }
417 default: { 417 default: {
418 luaG_runerror(L, 418 luaG_runerror(L, "invalid option '%%%c' to 'lua_pushfstring'",
419 "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), 419 *(e + 1));
420 *(e + 1));
421 } 420 }
422 } 421 }
423 n += 2; 422 n += 2;