1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-14 07:30:32 +02:00

* socket.c (scm_addr_vector): fix faulty scm_listify.

This commit is contained in:
Gary Houston 1996-12-28 19:17:39 +00:00
parent 11cc7dafee
commit 4ecd21bc8c
2 changed files with 6 additions and 2 deletions

View file

@ -466,7 +466,7 @@ scm_addr_vector (address, proc)
}
else
scm_misc_error (proc, "Unrecognised socket address type: %s",
scm_listify (SCM_MAKINUM (fam)));
scm_listify (SCM_MAKINUM (fam), SCM_UNSPECIFIED));
return result;
}