From 0bd99b327b2b485bd90116b78ddec82352fad046 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Nov 2011 10:44:26 -0200 Subject: [PATCH] avoid "unreachable" 'break' --- lobject.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lobject.c b/lobject.c index fdbf7f76..d07f068b 100644 --- a/lobject.c +++ b/lobject.c @@ -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;