From: Richard M. Stallman Date: Mon, 25 Jan 1999 23:43:20 +0000 (+0000) Subject: (xmalloc): Fix previous change. X-Git-Tag: emacs-20.4~769 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f32a7128bc3a7ecdcc9d825fb62977990ed0756;p=emacs.git (xmalloc): Fix previous change. --- diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index c6181bd2710..ca184cbb034 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -152,7 +152,7 @@ long * xmalloc (size) unsigned int size; { - char *result = (char *) malloc (size); + long *result = (long *) malloc (size); if (result == NULL) { perror ("malloc");