From: Dave Love Date: Wed, 20 Aug 2003 16:46:33 +0000 (+0000) Subject: (lisp_align_malloc): Change type of `aligned'. X-Git-Tag: ttn-vms-21-2-B4~9036 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d748931263143cb7d97b0b1c421ba9f9fd1439eb;p=emacs.git (lisp_align_malloc): Change type of `aligned'. --- diff --git a/src/alloc.c b/src/alloc.c index c4496b6ff7b..ca26888c442 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -552,7 +552,7 @@ xrealloc (block, size) } -/* Like free but block interrupt input.. */ +/* Like free but block interrupt input. */ void xfree (block) @@ -738,7 +738,8 @@ lisp_align_malloc (nbytes, type) if (!free_ablock) { - int i, aligned; + int i; + EMACS_INT aligned; /* int gets warning casting to 64-bit pointer. */ #ifdef DOUG_LEA_MALLOC /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed