diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-12 21:24:43 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-12 21:24:43 +0000 |
commit | dce41066d398fe2c58b6f8a21d56860ae82a2d49 (patch) | |
tree | 6460e288af5bbc284c4315cc95c1ff7afdfcf8df /libguile/ioext.c | |
parent | a9121c98ac1ac5077a8218f9b90a725be90ed4b7 (diff) | |
download | guile-dce41066d398fe2c58b6f8a21d56860ae82a2d49.tar.gz |
* ioext.c (s_scm_read_line): Cast result of call to
scm_do_read_line to unsigned char ptr.
Diffstat (limited to 'libguile/ioext.c')
-rw-r--r-- | libguile/ioext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/ioext.c b/libguile/ioext.c index 11d8ab5ae..ade23ced8 100644 --- a/libguile/ioext.c +++ b/libguile/ioext.c @@ -251,7 +251,7 @@ SCM_DEFINE (scm_read_line, "%read-line", 0, 1, 0, if (pt->rw_active == SCM_PORT_WRITE) scm_ptobs[SCM_PTOBNUM (port)].flush (port); - s = scm_do_read_line (port, &slen); + s = (char *) scm_do_read_line (port, &slen); if (s == NULL) term = line = SCM_EOF_VAL; |