diff options
Diffstat (limited to 'otherlibs/unix/accept.c')
-rw-r--r-- | otherlibs/unix/accept.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/accept.c b/otherlibs/unix/accept.c index 8d2c2fd5b..d41eba262 100644 --- a/otherlibs/unix/accept.c +++ b/otherlibs/unix/accept.c @@ -5,7 +5,7 @@ /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ /* */ /* Copyright 1996 Institut National de Recherche en Informatique et */ -/* Automatique. Distributed only by permission. */ +/* en Automatique. Distributed only by permission. */ /* */ /***********************************************************************/ @@ -34,7 +34,7 @@ value unix_accept(value sock) /* ML */ if (retcode == -1) uerror("accept", Nothing); a = alloc_sockaddr(); Begin_root (a); - res = alloc_tuple(2); + res = alloc_small(2, 0); Field(res, 0) = Val_int(retcode); Field(res, 1) = a; End_roots(); |