summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-01-11 07:42:23 -0800
committerKaz Kylheku <kaz@kylheku.com>2022-01-11 07:42:23 -0800
commitf3dd7e46e8394bd9754ac57d65f7228618c835c1 (patch)
treea1af04f7a7e679228d55fd97c6f1909aed4eb132
parent87012c150b5ee13a1faa32b609a4c8d315fd1e30 (diff)
downloadtxr-f3dd7e46e8394bd9754ac57d65f7228618c835c1.tar.gz
txr-f3dd7e46e8394bd9754ac57d65f7228618c835c1.tar.bz2
txr-f3dd7e46e8394bd9754ac57d65f7228618c835c1.zip
unwind: fix malformed #define.
* unwind.h (uw_last_form_expanded): Add missing # token. Because of this, code won't compile without CONFIG_DEBUG_SUPPORT.
-rw-r--r--unwind.h2
1 files changed, 1 insertions, 1 deletions
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 *);