changeset 66541:60d77f0435af

* alloc.c (emacs_blocked_free): Fix typo.
author Chong Yidong <cyd@stupidchicken.com>
date Sat, 29 Oct 2005 20:17:48 +0000
parents 7b888ab5ef0b
children 33b15a14f9b3
files src/ChangeLog src/alloc.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sat Oct 29 20:04:09 2005 +0000
+++ b/src/ChangeLog	Sat Oct 29 20:17:48 2005 +0000
@@ -1,3 +1,7 @@
+2005-10-29  Chong Yidong  <cyd@stupidchicken.com>
+
+	* alloc.c (emacs_blocked_free): Fix typo.
+
 2005-10-29  Richard M. Stallman  <rms@gnu.org>
 
 	* xdisp.c (handle_fontified_prop): Do nothing if memory full.
--- a/src/alloc.c	Sat Oct 29 20:04:09 2005 +0000
+++ b/src/alloc.c	Sat Oct 29 20:17:48 2005 +0000
@@ -1180,7 +1180,7 @@
 	 is substantially larger than the block size malloc uses.  */
       && (bytes_used_when_full
 	  > ((bytes_used_now = BYTES_USED)
-	     + max (malloc_hysteresis, 4) * SPARE_MEMORY))
+	     + max (malloc_hysteresis, 4) * SPARE_MEMORY)))
     refill_memory_reserve ();
 
   __free_hook = emacs_blocked_free;