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:
parent
3843f734d1
commit
4858610b00
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue