diff options
Diffstat (limited to 'lobject.c')
| -rw-r--r-- | lobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.c,v 1.41 2000/06/12 13:52:05 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 1.42 2000/06/26 19:28:31 roberto Exp roberto $ |
| 3 | ** Some generic functions over Lua objects | 3 | ** Some generic functions over Lua objects |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -45,7 +45,7 @@ int luaO_equalObj (const TObject *t1, const TObject *t2) { | |||
| 45 | case TAG_CCLOSURE: case TAG_LCLOSURE: | 45 | case TAG_CCLOSURE: case TAG_LCLOSURE: |
| 46 | return clvalue(t1) == clvalue(t2); | 46 | return clvalue(t1) == clvalue(t2); |
| 47 | default: | 47 | default: |
| 48 | LUA_ASSERT(L, ttype(t1) == TAG_NIL, "invalid type"); | 48 | LUA_ASSERT(ttype(t1) == TAG_NIL, "invalid type"); |
| 49 | return 1; /* TAG_NIL */ | 49 | return 1; /* TAG_NIL */ |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
