changeset 52276:5623f26dff58

(lisp_align_malloc): Change type of `aligned'.
author Dave Love <fx@gnu.org>
date Wed, 20 Aug 2003 16:46:33 +0000
parents 4e58666573f4
children 26b0352eaa49
files src/alloc.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloc.c	Wed Aug 20 16:45:53 2003 +0000
+++ b/src/alloc.c	Wed Aug 20 16:46:33 2003 +0000
@@ -552,7 +552,7 @@
 }
 
 
-/* Like free but block interrupt input..  */
+/* Like free but block interrupt input.  */
 
 void
 xfree (block)
@@ -738,7 +738,8 @@
 
   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