From 034dbf2c965201eccab6a66c8a83fcd7a7c435b6 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 13 Jan 2014 08:09:17 -0800 Subject: * debug.h (debug_check): Fix broken build when debugger is disabled: the debug-disabled stub function needs six arguments. --- ChangeLog | 5 +++++ debug.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 10ed6d95..39713f76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-13 Kaz Kylheku + + * debug.h (debug_check): Fix broken build when debugger is disabled: + the debug-disabled stub function needs six arguments. + 2014-01-12 Kaz Kylheku Some bignum-related optimizations 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; } -- cgit v1.2.3