diff options
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index f2f35aa1d..9e01901f5 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -922,7 +922,7 @@ scm_dir_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED) if (!SCM_DIR_OPEN_P (exp)) scm_puts ("closed: ", port); scm_puts ("directory stream ", port); - scm_intprint (SCM_CELL_WORD_1 (exp), 16, port); + scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port); scm_putc ('>', port); return 1; } |