From dd13f3441c142f0d41a2dd1da8cbcd1525c862f8 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 11 Jan 2022 07:42:23 -0800 Subject: unwind: fix malformed #define. * unwind.h (uw_last_form_expanded): Add missing # token. Because of this, code won't compile without CONFIG_DEBUG_SUPPORT. --- unwind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unwind.h') diff --git a/unwind.h b/unwind.h index ffa52eb6..932cc4de 100644 --- a/unwind.h +++ b/unwind.h @@ -374,7 +374,7 @@ val uw_find_frames(val extype, val frtype); val uw_find_frames_by_mask(val mask); val uw_last_form_expanded(void); #else -define uw_last_form_expanded() ((void) 0) +#define uw_last_form_expanded() ((void) 0) #endif val uw_invoke_catch(val catch_frame, val sym, struct args *); val uw_muffle_warning(val exc, struct args *); -- cgit v1.2.3