(lisp_align_malloc): Change type of `aligned'.
authorDave Love <fx@gnu.org>
Wed, 20 Aug 2003 16:46:33 +0000 (16:46 +0000)
committerDave Love <fx@gnu.org>
Wed, 20 Aug 2003 16:46:33 +0000 (16:46 +0000)
src/alloc.c

index c4496b6..ca26888 100644 (file)
@@ -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