From 9618aaf07d0d82ccbac91db22cb42451ec17d7ed Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 19 Jun 1998 13:14:09 -0300 Subject: small corrections in comments --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index 99c76233..8e1742dd 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 1.11 1998/03/09 21:49:52 roberto Exp roberto $ +** $Id: lobject.c,v 1.12 1998/06/18 16:57:03 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -52,7 +52,7 @@ int luaO_equalObj (TObject *t1, TObject *t2) case LUA_T_CLOSURE: return t1->value.cl == t2->value.cl; default: LUA_INTERNALERROR("invalid type"); - return 0; /* UNREACHEABLE */ + return 0; /* UNREACHABLE */ } } -- cgit v1.2.3-55-g6feb