aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorDave Love2003-08-20 16:46:33 +0000
committerDave Love2003-08-20 16:46:33 +0000
commitd748931263143cb7d97b0b1c421ba9f9fd1439eb (patch)
treec792cd394b591c13bf90ad1b88cee8e93a5ffeee /src/alloc.c
parentcf8c53b2605e209b9005897f593223e382f0b325 (diff)
downloademacs-d748931263143cb7d97b0b1c421ba9f9fd1439eb.tar.gz
emacs-d748931263143cb7d97b0b1c421ba9f9fd1439eb.zip
(lisp_align_malloc): Change type of `aligned'.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 3 insertions, 2 deletions
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)
552} 552}
553 553
554 554
555/* Like free but block interrupt input.. */ 555/* Like free but block interrupt input. */
556 556
557void 557void
558xfree (block) 558xfree (block)
@@ -738,7 +738,8 @@ lisp_align_malloc (nbytes, type)
738 738
739 if (!free_ablock) 739 if (!free_ablock)
740 { 740 {
741 int i, aligned; 741 int i;
742 EMACS_INT aligned; /* int gets warning casting to 64-bit pointer. */
742 743
743#ifdef DOUG_LEA_MALLOC 744#ifdef DOUG_LEA_MALLOC
744 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed 745 /* Prevent mmap'ing the chunk. Lisp data may not be mmap'ed