This commit is contained in:
Roberto Ierusalimschy 1999-07-22 16:35:41 -03:00
parent e9a670695a
commit 438598aeea
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
** $Id: lbuiltin.c,v 1.58 1999/05/27 20:21:03 roberto Exp roberto $
** $Id: lbuiltin.c,v 1.59 1999/06/17 17:04:03 roberto Exp roberto $
** Built-in functions
** See Copyright Notice in lua.h
*/
@ -386,7 +386,7 @@ static void luaB_type (void) {
static void luaB_assert (void) {
lua_Object p = lua_getparam(1);
if (p == LUA_NOOBJECT || lua_isnil(p))
luaL_verror("assertion failed! %.100s", luaL_opt_string(2, ""));
luaL_verror("assertion failed! %.90s", luaL_opt_string(2, ""));
}