diff options
Diffstat (limited to 'libguile/continuations.h')
-rw-r--r-- | libguile/continuations.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/continuations.h b/libguile/continuations.h index 0d31225c9..400eee326 100644 --- a/libguile/continuations.h +++ b/libguile/continuations.h @@ -63,8 +63,8 @@ typedef struct jmp_buf jmpbuf; SCM dynenv; SCM_STACKITEM *base; /* base of the live stack, before it was saved. */ - scm_bits_t num_stack_items; /* size of the saved stack. */ - scm_ubits_t seq; /* dynamic root identifier. */ + size_t num_stack_items; /* size of the saved stack. */ + unsigned long seq; /* dynamic root identifier. */ #ifdef DEBUG_EXTENSIONS /* the most recently created debug frame on the live stack, before |