mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-26 13:10:22 +02:00
(s_scm_read_line): Initialize slen to make gcc happy.
This commit is contained in:
parent
e43af77c81
commit
f5dcc0e8bb
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ SCM_DEFINE (scm_read_line, "%read-line", 0, 1, 0,
|
||||||
{
|
{
|
||||||
scm_t_port *pt;
|
scm_t_port *pt;
|
||||||
char *s;
|
char *s;
|
||||||
size_t slen;
|
size_t slen = 0;
|
||||||
SCM line, term;
|
SCM line, term;
|
||||||
|
|
||||||
if (SCM_UNBNDP (port))
|
if (SCM_UNBNDP (port))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue