aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
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