summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2005-10-29 20:17:48 +0000
committerChong Yidong <cyd@stupidchicken.com>2005-10-29 20:17:48 +0000
commitbccfb31031b10ac2de02bf061516fd8fbdf6d56b (patch)
tree40dd834e5ad0795e6b7c4ddd044df6d48e11c393 /src/alloc.c
parent685abb980b4cfb13bc2c7a054bb3090910c05e8f (diff)
downloademacs-bccfb31031b10ac2de02bf061516fd8fbdf6d56b.tar.gz
* alloc.c (emacs_blocked_free): Fix typo.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index b18e313fc87..90ef4ba4e81 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1180,7 +1180,7 @@ emacs_blocked_free (ptr, ptr2)
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;