summaryrefslogtreecommitdiffstats
path: root/debug.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-13 08:09:17 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-13 08:09:17 -0800
commit034dbf2c965201eccab6a66c8a83fcd7a7c435b6 (patch)
treeed94e2fdec2ba88d21cc20759bfda540da5b9477 /debug.h
parent108b50a38b298ade25dc7d355c75ebe0c21b9001 (diff)
downloadtxr-034dbf2c965201eccab6a66c8a83fcd7a7c435b6.tar.gz
txr-034dbf2c965201eccab6a66c8a83fcd7a7c435b6.tar.bz2
txr-034dbf2c965201eccab6a66c8a83fcd7a7c435b6.zip
* debug.h (debug_check): Fix broken build when debugger is disabled:
the debug-disabled stub function needs six arguments.
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/debug.h b/debug.h
index 48daebd6..954b74ff 100644
--- a/debug.h
+++ b/debug.h
@@ -85,7 +85,8 @@ void debug_init(void);
#define debug_return(VAL) return VAL
-INLINE val debug_check(val form, val bindings, val data, val line, val chr)
+INLINE val debug_check(val form, val bindings, val data, val line,
+ val pos, val base)
{
return nil;
}