diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-30 11:35:17 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-30 11:35:17 -0300 |
commit | cfba57207660fd27ddac9ea51cdeb263c2d6b418 (patch) | |
tree | 3112ff095cd058017823a64dd592649ff750de89 /lbuiltin.c | |
parent | aa01d2568dcecf5a12ce2d8f04e969658ea46c89 (diff) | |
download | lua-cfba57207660fd27ddac9ea51cdeb263c2d6b418.tar.gz lua-cfba57207660fd27ddac9ea51cdeb263c2d6b418.tar.bz2 lua-cfba57207660fd27ddac9ea51cdeb263c2d6b418.zip |
remove dummy argument in LUA_ASSERT
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 | } |