aboutsummaryrefslogtreecommitdiff
path: root/src/compat.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/compat.cpp2
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
56void* lua_newuserdatauv( lua_State* L, size_t sz, int nuvalue) 56void* 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