diff options
Diffstat (limited to 'libguile/fports.c')
-rw-r--r-- | libguile/fports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/fports.c b/libguile/fports.c index 35789ff6e..9d8d1f48a 100644 --- a/libguile/fports.c +++ b/libguile/fports.c @@ -519,7 +519,7 @@ fport_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED) { scm_puts (SCM_PTOBNAME (SCM_PTOBNUM (exp)), port); scm_putc (' ', port); - scm_intprint ((scm_t_bits) SCM_PTAB_ENTRY (exp), 16, port); + scm_uintprint ((scm_t_bits) SCM_PTAB_ENTRY (exp), 16, port); } scm_putc ('>', port); return 1; |