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.115 2000/06/08 17:48:31 roberto Exp roberto $ | 2 | ** $Id: lbuiltin.c,v 1.116 2000/06/12 13:52:05 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 | */ |
@@ -372,7 +372,7 @@ void luaB_tostring (lua_State *L) { | |||
372 | lua_pushstring(L, "nil"); | 372 | lua_pushstring(L, "nil"); |
373 | return; | 373 | return; |
374 | default: | 374 | default: |
375 | LUA_INTERNALERROR(L, "invalid type"); | 375 | LUA_INTERNALERROR("invalid type"); |
376 | } | 376 | } |
377 | lua_pushstring(L, buff); | 377 | lua_pushstring(L, buff); |
378 | } | 378 | } |