summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-12-03 10:28:39 +0000
committerJim Meyering <jim@meyering.net>2003-12-03 10:28:39 +0000
commit54594d2b212782e62f41cf731415968e815b7582 (patch)
treed4dccc6d691b296fd18f69db63456f5591b8e877 /lib
parentd82b47032425211ba7abed445c33b3b44698cb1a (diff)
downloadcoreutils-54594d2b212782e62f41cf731415968e815b7582.tar.xz
(getgroups): xmalloc takes one argument, not two.
Diffstat (limited to 'lib')
-rw-r--r--lib/getgroups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getgroups.c b/lib/getgroups.c
index 4ffa4e08f..0f951b73b 100644
--- a/lib/getgroups.c
+++ b/lib/getgroups.c
@@ -48,7 +48,7 @@ getgroups (int n, GETGROUPS_T *group)
/* No need to worry about address arithmetic overflow here,
since the ancient systems that we're running on have low
limits on the number of secondary groups. */
- gbuf = xmalloc (gbuf, n * sizeof *gbuf);
+ gbuf = xmalloc (n * sizeof *gbuf);
n_groups = getgroups (n, gbuf);
if (n_groups < n)
break;