aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman1999-01-25 23:43:20 +0000
committerRichard M. Stallman1999-01-25 23:43:20 +0000
commit5f32a7128bc3a7ecdcc9d825fb62977990ed0756 (patch)
treee4632e6dcd81268189d7108e48d5d46c283ae829 /lib-src
parent0a383cc7726f8068de21e13450c3c8cb6d50fa11 (diff)
downloademacs-5f32a7128bc3a7ecdcc9d825fb62977990ed0756.tar.gz
emacs-5f32a7128bc3a7ecdcc9d825fb62977990ed0756.zip
(xmalloc): Fix previous change.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/emacsclient.c2
1 files changed, 1 insertions, 1 deletions
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 *
152xmalloc (size) 152xmalloc (size)
153 unsigned int size; 153 unsigned int size;
154{ 154{
155 char *result = (char *) malloc (size); 155 long *result = (long *) malloc (size);
156 if (result == NULL) 156 if (result == NULL)
157 { 157 {
158 perror ("malloc"); 158 perror ("malloc");