changeset 24180:bc45833cd3c7

(xmalloc): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 25 Jan 1999 23:43:20 +0000
parents c2b622202522
children f14a9b714a8e
files lib-src/emacsclient.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/emacsclient.c	Mon Jan 25 21:55:12 1999 +0000
+++ b/lib-src/emacsclient.c	Mon Jan 25 23:43:20 1999 +0000
@@ -152,7 +152,7 @@
 xmalloc (size)
      unsigned int size;
 {
-  char *result = (char *) malloc (size);
+  long *result = (long *) malloc (size);
   if (result == NULL)
   {
     perror ("malloc");