diff options
Diffstat (limited to '')
-rw-r--r-- | src/compat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat.cpp b/src/compat.cpp index 9f652a7..712aa23 100644 --- a/src/compat.cpp +++ b/src/compat.cpp | |||
@@ -55,7 +55,7 @@ void luaL_requiref(lua_State *L, const char *modname, lua_CFunction openf, int g | |||
55 | 55 | ||
56 | void* lua_newuserdatauv( lua_State* L, size_t sz, int nuvalue) | 56 | void* lua_newuserdatauv( lua_State* L, size_t sz, int nuvalue) |
57 | { | 57 | { |
58 | ASSERT_L( nuvalue <= 1); | 58 | LUA_ASSERT(L, nuvalue <= 1); |
59 | return lua_newuserdata(L, sz); | 59 | return lua_newuserdata(L, sz); |
60 | } | 60 | } |
61 | 61 | ||