diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-30 10:44:26 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-30 10:44:26 -0200 |
commit | 0bd99b327b2b485bd90116b78ddec82352fad046 (patch) | |
tree | bad17256885198ccf7ad1ba2bcf05e6f63576c1c | |
parent | 6d8b67209443e03d83cb7b6306dc0ef098d0f1f8 (diff) | |
download | lua-0bd99b327b2b485bd90116b78ddec82352fad046.tar.gz lua-0bd99b327b2b485bd90116b78ddec82352fad046.tar.bz2 lua-0bd99b327b2b485bd90116b78ddec82352fad046.zip |
avoid "unreachable" 'break'
-rw-r--r-- | lobject.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 2.53 2011/07/27 12:09:13 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 2.53 2011/07/27 12:13:08 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 | */ |
@@ -221,7 +221,6 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | |||
221 | luaG_runerror(L, | 221 | luaG_runerror(L, |
222 | "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), | 222 | "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), |
223 | *(e + 1)); | 223 | *(e + 1)); |
224 | break; | ||
225 | } | 224 | } |
226 | } | 225 | } |
227 | n += 2; | 226 | n += 2; |