Mercurial > emacs
diff src/ralloc.c @ 73539:db045c86d29b
* ralloc.c (relinquish): Use a long for excess space counter to
handle 64-bit case correctly.
| author | Chong Yidong <cyd@stupidchicken.com> |
|---|---|
| date | Sun, 29 Oct 2006 21:54:18 +0000 |
| parents | 3bd95f4f2941 |
| children | e90d04cd455a 7eeafaaa9eab |
line wrap: on
line diff
--- a/src/ralloc.c Sun Oct 29 21:49:24 2006 +0000 +++ b/src/ralloc.c Sun Oct 29 21:54:18 2006 +0000 @@ -330,7 +330,7 @@ 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. */
