diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2009-10-07 22:14:38 +0100 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2009-10-07 22:14:38 +0100 |
commit | 98241dc53fc66ec86c01b9eeea426def2f787cec (patch) | |
tree | 94a2ff5a14e6f550da0c4923868f7e28844be223 /test-suite/standalone/test-unwind.c | |
parent | 61aab1c3755a97390fc8e365fbd4a6b1a4f80978 (diff) | |
download | guile-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.c | 2 |
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; |