lua

A copy of the Lua development repository
Log | Files | Refs | README

commit cbe05b48bbfe98b0aac3947a877a4d493f80ab63
parent e7f34ad395284b4ad2b53b092aa4576616ede7c5
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 18 Jun 2015 11:25:01 -0300

using 'lua_longassert' to avoid warnings

Diffstat:
Mltests.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ltests.c b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.204 2015/03/13 16:24:50 roberto Exp roberto $ +** $Id: ltests.c,v 2.205 2015/04/02 21:10:21 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -1350,7 +1350,7 @@ static struct X { int x; } x; else if EQ("tostring") { const char *s = lua_tostring(L1, getindex); const char *s1 = lua_pushstring(L1, s); - lua_assert((s == NULL && s1 == NULL) || strcmp(s, s1) == 0); + lua_longassert((s == NULL && s1 == NULL) || strcmp(s, s1) == 0); } else if EQ("type") { lua_pushstring(L1, luaL_typename(L1, getnum));