aboutsummaryrefslogtreecommitdiff
path: root/src/lib_base.c
diff options
context:
space:
mode:
authorMike Pall <mike>2012-07-09 16:02:05 +0200
committerMike Pall <mike>2012-07-09 16:02:05 +0200
commitf20ff8a30dbec50bc20b47702c4c61c08f67bd5b (patch)
tree24829aa879eeaf94ecaa2d6dfe2bc53357a01562 /src/lib_base.c
parent6e4d0fdc8e8121fac45d85661c638093fbfd1e3a (diff)
downloadluajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.tar.gz
luajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.tar.bz2
luajit-f20ff8a30dbec50bc20b47702c4c61c08f67bd5b.zip
Avoid compiler warnings about redefined C++ keywords.
Diffstat (limited to 'src/lib_base.c')
-rw-r--r--src/lib_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib_base.c b/src/lib_base.c
index 7539e92e..383955d4 100644
--- a/src/lib_base.c
+++ b/src/lib_base.c
@@ -257,7 +257,7 @@ LJLIB_ASM(tostring) LJLIB_REC(.)
257 if (tvisfunc(o) && isffunc(funcV(o))) 257 if (tvisfunc(o) && isffunc(funcV(o)))
258 lua_pushfstring(L, "function: fast#%d", funcV(o)->c.ffid); 258 lua_pushfstring(L, "function: fast#%d", funcV(o)->c.ffid);
259 else 259 else
260 lua_pushfstring(L, "%s: %p", typename(o), lua_topointer(L, 1)); 260 lua_pushfstring(L, "%s: %p", lj_typename(o), lua_topointer(L, 1));
261 /* Note: lua_pushfstring calls the GC which may invalidate o. */ 261 /* Note: lua_pushfstring calls the GC which may invalidate o. */
262 s = strV(L->top-1); 262 s = strV(L->top-1);
263 } 263 }