1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* socket.c (scm_addr_vector): use SCM_UNDEFINED in scm_listify,

not SCM_UNSPECIFIED.
This commit is contained in:
Gary Houston 1997-05-13 04:54:25 +00:00
parent 08fea0882d
commit d636d18c1e

View file

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