changeset 4541:3cb007557d70

(readname): Remove casts no longer required in C89.
author Paul Eggert <eggert@cs.ucla.edu>
date Thu, 14 Aug 2003 22:04:35 +0000
parents fa39e8b4a0c2
children 4436daed2dbd
files lib/getusershell.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
   if (*name == NULL)
     {
       *size = 10;
-      *name = (char *) xmalloc (*size);
+      *name = xmalloc (*size);
     }
 
   /* Skip blank space.  */
@@ -166,7 +166,7 @@
       while (name_index >= *size)
 	{
 	  *size *= 2;
-	  *name = (char *) xrealloc (*name, *size);
+	  *name = xrealloc (*name, *size);
 	}
       c = getc (stream);
     }