From 5f32a7128bc3a7ecdcc9d825fb62977990ed0756 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 25 Jan 1999 23:43:20 +0000 Subject: [PATCH] (xmalloc): Fix previous change. --- lib-src/emacsclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.39.2