aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1999-01-25 23:43:20 +0000
committerRichard M. Stallman <[email protected]>1999-01-25 23:43:20 +0000
commit5f32a7128bc3a7ecdcc9d825fb62977990ed0756 (patch)
treee4632e6dcd81268189d7108e48d5d46c283ae829 /lib-src
parent0a383cc7726f8068de21e13450c3c8cb6d50fa11 (diff)
(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 c6181bd271..ca184cbb03 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");