diff options
Diffstat (limited to 'lbuiltin.c')
-rw-r--r-- | lbuiltin.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lbuiltin.c,v 1.97 2000/03/24 17:26:08 roberto Exp roberto $ | 2 | ** $Id: lbuiltin.c,v 1.98 2000/03/27 20:08:02 roberto Exp roberto $ |
3 | ** Built-in functions | 3 | ** Built-in functions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -380,7 +380,7 @@ void luaB_tostring (lua_State *L) { | |||
380 | case TAG_STRING: | 380 | case TAG_STRING: |
381 | lua_pushobject(L, o); | 381 | lua_pushobject(L, o); |
382 | return; | 382 | return; |
383 | case TAG_ARRAY: | 383 | case TAG_TABLE: |
384 | sprintf(buff, "table: %p", o->value.a); | 384 | sprintf(buff, "table: %p", o->value.a); |
385 | break; | 385 | break; |
386 | case TAG_LCLOSURE: case TAG_CCLOSURE: | 386 | case TAG_LCLOSURE: case TAG_CCLOSURE: |