diff options
Diffstat (limited to 'libguile/debug.c')
-rw-r--r-- | libguile/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c index 2ec0a0c8c..01bf656eb 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -87,7 +87,7 @@ with_traps_after (void *data) static SCM with_traps_inner (void *data) { - SCM thunk = SCM_PACK (data); + SCM thunk = SCM_PACK ((scm_t_bits) data); return scm_call_0 (thunk); } |