gcc-6: error: this ‘if’ clause does not guard... [-Werror=misleading-indentation]

This commit is contained in:
Alam Ed Arias 2016-05-28 21:24:06 -04:00
parent 9e196613a0
commit 209d76cb9d
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ static void addfield (lua_State *L, luaL_Buffer *b, int i) {
if (!lua_isstring(L, -1))
luaL_error(L, "invalid value (%s) at index %d in table for "
LUA_QL("concat"), luaL_typename(L, -1), i);
luaL_addvalue(b);
luaL_addvalue(b);
}