diff options
author | portix <portix@gmx.net> | 2014-03-19 11:52:09 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2014-03-19 11:52:09 +0100 |
commit | 75dce06be15a2d75cdafe59ea67ef498d6255081 (patch) | |
tree | 6bed45170dabf88a951e94671fc51895fe4b8732 | |
parent | afeb3ad70c196adc817aaa33f3db8a6bbd8aa646 (diff) | |
download | dwb-75dce06be15a2d75cdafe59ea67ef498d6255081.zip |
Removing debug message in BOXED_DEF_VOID
-rw-r--r-- | src/scripts.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scripts.c b/src/scripts.c index 5551167b..512ab090 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -127,7 +127,6 @@ } #define BOXED_DEF_VOID(Boxed, name, func) static JSValueRef name(JSContextRef ctx, JSObjectRef function, JSObjectRef this, size_t argc, const JSValueRef argv[], JSValueRef* exc) { \ - puts("void"); \ Boxed *priv = JSObjectGetPrivate(this); \ if (priv != NULL) { \ func(priv); \ |