From 125c259204ef13cce33b9eef3ffd517f3aaf8922 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 12 Aug 2008 11:46:45 +0200 Subject: [PATCH] lua: remove spurious debug printf Signed-off-by: Julien Danjou --- lua.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua.c b/lua.c index 1a265c8f..03790124 100644 --- a/lua.c +++ b/lua.c @@ -423,7 +423,6 @@ luaA_otable_newindex(lua_State *L) if((obj = lua_touserdata(L, 2))) { - printf("looking for %p\n", *obj); /* begins at nil */ lua_pushnil(L); while(lua_next(L, 1)) @@ -431,7 +430,6 @@ luaA_otable_newindex(lua_State *L) if((v = lua_touserdata(L, -2)) && *v == *obj) { - printf("found %p, replace\n", *v); /* remove value */ lua_pop(L, 1); /* push new value on top */