summaryrefslogtreecommitdiff
path: root/libguile/strports.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/strports.c')
-rw-r--r--libguile/strports.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/strports.c b/libguile/strports.c
index d787ccc17..8c814c8bb 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);
+ return scm_return_first (*pt->read_pos, port); /* huh? -- hwn*/
}
/* change the size of a port's string to new_size. this doesn't
@@ -207,7 +207,7 @@ st_seek (SCM port, off_t offset, int whence)
if (target >= pt->write_buf_size)
{
- if (!(SCM_CAR (port) & SCM_WRTNG))
+ if (!(SCM_CARW (port) & SCM_WRTNG))
{
if (target > pt->write_buf_size)
{