diff lib-src/fakemail.c @ 434:9d177e8d4150 r21-2-25

Import from CVS: tag r21-2-25
author cvs
date Mon, 13 Aug 2007 11:30:53 +0200
parents 3ecd8885ac67
children 84b14dcb0985
line wrap: on
line diff
--- a/lib-src/fakemail.c	Mon Aug 13 11:30:00 2007 +0200
+++ b/lib-src/fakemail.c	Mon Aug 13 11:30:53 2007 +0200
@@ -162,7 +162,7 @@
 extern unsigned short geteuid ();
 static struct passwd *my_entry;
 #define cuserid(s)				\
-(my_entry = getpwuid (((int) geteuid ())),	\
+(my_entry = getpwuid ((int) geteuid ()),	\
  my_entry->pw_name)
 #endif
 
@@ -193,7 +193,7 @@
 static char *
 xmalloc (size_t size)
 {
-  char *result = malloc (((unsigned) size));
+  char *result = (char *) malloc (size);
   if (result == ((char *) NULL))
     fatal ("virtual memory exhausted", (char *) 0);
   return result;