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 6a909d8cc..9bc67dc01 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -751,7 +751,7 @@ scm_dir_print (SCM exp, SCM port, scm_print_state *pstate) if (SCM_CLOSEDP (exp)) scm_puts ("closed: ", port); scm_puts ("directory stream ", port); - scm_intprint (SCM_CDR (exp), 16, port); + scm_intprint ((int)SCM_CDR (exp), 16, port); scm_putc ('>', port); return 1; } |