summaryrefslogtreecommitdiff
path: root/test-suite/standalone/test-unwind.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2009-10-07 22:14:38 +0100
committerNeil Jerram <neil@ossau.uklinux.net>2009-10-07 22:14:38 +0100
commit98241dc53fc66ec86c01b9eeea426def2f787cec (patch)
tree94a2ff5a14e6f550da0c4923868f7e28844be223 /test-suite/standalone/test-unwind.c
parent61aab1c3755a97390fc8e365fbd4a6b1a4f80978 (diff)
downloadguile-98241dc53fc66ec86c01b9eeea426def2f787cec.tar.gz
Revert "Change dynwind flag enums to #defines, for greater portability"
This reverts commit b25aa0b9373d2798469e0fe999cd915e8beedc4f.
Diffstat (limited to 'test-suite/standalone/test-unwind.c')
-rw-r--r--test-suite/standalone/test-unwind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/standalone/test-unwind.c b/test-suite/standalone/test-unwind.c
index e9306371e..2b0291dd5 100644
--- a/test-suite/standalone/test-unwind.c
+++ b/test-suite/standalone/test-unwind.c
@@ -136,7 +136,7 @@ check_flag1 (const char *tag, void (*func)(void), int val)
SCM
check_cont_body (void *data)
{
- int flags = (data? SCM_F_DYNWIND_REWINDABLE : 0);
+ scm_t_dynwind_flags flags = (data? SCM_F_DYNWIND_REWINDABLE : 0);
int first;
SCM val;