1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(check_cont): Cast rewindable to long, to

avoid warning from gcc 3.4 on 64-bit systems about casting int
(32-bits) to pointer (64-bits).
This commit is contained in:
Kevin Ryde 2005-01-24 00:07:01 +00:00
parent 3843f734d1
commit 4858610b00

View file

@ -124,7 +124,7 @@ check_cont (int rewindable)
SCM res;
res = scm_internal_catch (SCM_BOOL_T,
check_cont_body, (void *)rewindable,
check_cont_body, (void *)(long)rewindable,
return_tag, NULL);
/* RES is now either the created continuation, the value passed to