diff options
Diffstat (limited to 'libguile/coop-pthreads.c')
-rw-r--r-- | libguile/coop-pthreads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/coop-pthreads.c b/libguile/coop-pthreads.c index f99417002..844db7403 100644 --- a/libguile/coop-pthreads.c +++ b/libguile/coop-pthreads.c @@ -142,7 +142,7 @@ thread_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED) { scm_copt_thread *t = SCM_THREAD_DATA (exp); scm_puts ("#<thread ", port); - scm_intprint ((unsigned long)t, 16, port); + scm_uintprint ((scm_t_bits)t, 16, port); if (t->pthread != -1) { scm_putc (' ', port); |