1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00

detail (removed unreacheable 'break')

This commit is contained in:
Roberto Ierusalimschy 2015-10-08 12:53:05 -03:00
parent 8949904783
commit 880df57e52

View File

@ -1,5 +1,5 @@
/*
** $Id: lstrlib.c,v 1.233 2015/09/26 18:45:03 roberto Exp roberto $
** $Id: lstrlib.c,v 1.234 2015/09/28 18:05:01 roberto Exp roberto $
** Standard library for string operations and pattern-matching
** See Copyright Notice in lua.h
*/
@ -1390,7 +1390,7 @@ static int str_packsize (lua_State *L) {
case Kstring: /* strings with length count */
case Kzstr: /* zero-terminated string */
luaL_argerror(L, 1, "variable-length format");
break;
/* call never return, but to avoid warnings: *//* FALLTHROUGH */
default: break;
}
}