1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

avoid "unreachable" 'break'

This commit is contained in:
Roberto Ierusalimschy
2011-11-30 10:44:26 -02:00
parent 6d8b672094
commit 0bd99b327b
+1 -2
View File
@@ -1,5 +1,5 @@
/*
** $Id: lobject.c,v 2.53 2011/07/27 12:09:13 roberto Exp roberto $
** $Id: lobject.c,v 2.53 2011/07/27 12:13:08 roberto Exp roberto $
** Some generic functions over Lua objects
** See Copyright Notice in lua.h
*/
@@ -221,7 +221,6 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
luaG_runerror(L,
"invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"),
*(e + 1));
break;
}
}
n += 2;