summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/getpw.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/getpw.c')
-rw-r--r--otherlibs/unix/getpw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/getpw.c b/otherlibs/unix/getpw.c
index c4f3e17fa..b39e98573 100644
--- a/otherlibs/unix/getpw.c
+++ b/otherlibs/unix/getpw.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. */
/* */
/***********************************************************************/
@@ -30,7 +30,7 @@ static value alloc_passwd_entry(struct passwd *entry)
gecos = copy_string(entry->pw_gecos);
dir = copy_string(entry->pw_dir);
shell = copy_string(entry->pw_shell);
- res = alloc_tuple(7);
+ res = alloc_small(7, 0);
Field(res,0) = name;
Field(res,1) = passwd;
Field(res,2) = Val_int(entry->pw_uid);