mirror of https://github.com/rusefi/lua.git
avoid "unreachable" 'break'
This commit is contained in:
parent
6d8b672094
commit
0bd99b327b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue