]> git.eshelyaron.com Git - emacs.git/commitdiff
* ralloc.c (relinquish): Use a long for excess space counter to
authorChong Yidong <cyd@stupidchicken.com>
Sun, 29 Oct 2006 21:54:18 +0000 (21:54 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 29 Oct 2006 21:54:18 +0000 (21:54 +0000)
handle 64-bit case correctly.

src/ChangeLog
src/ralloc.c

index 2aba406af3709546adccd2e0ec8eb4e8e0e77c03..27a229b0f68df56a249d766e584accd9f5b8c147 100644 (file)
@@ -1,3 +1,8 @@
+2006-10-29  Mark Davies  <mark@mcs.vuw.ac.nz> (tiny change)
+
+       * ralloc.c (relinquish): Use a long for excess space counter to
+       handle 64-bit case correctly.
+
 2006-10-29  Jeramey Crawford  <jeramey@jeramey.com>
 
        * m/amdx86-64.h: Add defines for OpenBSD x86-64.
index fea9ea5d0a81f3cf18aa5e33fa4a943b822d9ffc..83a26dd35d666f5f63bee9718d2c25f6a86ad7ba 100644 (file)
@@ -330,7 +330,7 @@ static void
 relinquish ()
 {
   register heap_ptr h;
-  int excess = 0;
+  long excess = 0;
 
   /* Add the amount of space beyond break_value
      in all heaps which have extend beyond break_value at all.  */