diff options
Diffstat (limited to 'libguile/strports.c')
-rw-r--r-- | libguile/strports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strports.c b/libguile/strports.c index 8c814c8bb..41335f978 100644 --- a/libguile/strports.c +++ b/libguile/strports.c @@ -83,7 +83,7 @@ stfill_buffer (SCM port) if (pt->read_pos >= pt->read_end) return EOF; else - return scm_return_first (*pt->read_pos, port); /* huh? -- hwn*/ + return scm_return_first_int (*pt->read_pos, port); } /* change the size of a port's string to new_size. this doesn't |