summaryrefslogtreecommitdiff
path: root/lib/getusershell.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-11 12:20:35 +0000
committerJim Meyering <jim@meyering.net>2003-04-11 12:20:35 +0000
commit58b92bbeb23db76f96843e8a6784940fe0d902b2 (patch)
tree00bc3b6883550af46200926702de211820a40b1c /lib/getusershell.c
parent9def4be367ef67f9e5064ac5a0d20cf5e41f4285 (diff)
downloadcoreutils-58b92bbeb23db76f96843e8a6784940fe0d902b2.tar.xz
Remove anachronistic casts of xmalloc, xrealloc, and xcalloc return values.
Diffstat (limited to 'lib/getusershell.c')
-rw-r--r--lib/getusershell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/getusershell.c b/lib/getusershell.c
index 019ec55cf..3401c885d 100644
--- a/lib/getusershell.c
+++ b/lib/getusershell.c
@@ -1,5 +1,5 @@
/* getusershell.c -- Return names of valid user shells.
- Copyright (C) 1991, 1997, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -153,7 +153,7 @@ readname (name, size, stream)
if (*name == NULL)
{
*size = 10;
- *name = (char *) xmalloc (*size);
+ *name = xmalloc (*size);
}
/* Skip blank space. */
@@ -166,7 +166,7 @@ readname (name, size, stream)
while (name_index >= *size)
{
*size *= 2;
- *name = (char *) xrealloc (*name, *size);
+ *name = xrealloc (*name, *size);
}
c = getc (stream);
}