diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2002-08-30 06:00:00 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2002-08-30 06:00:00 +0000 |
commit | f36ef4a88b116b5250bf8c6652f6bed069827a2d (patch) | |
tree | 8b430db246b739c82834719f0fc89172fa1d8c1f /libc/stdlib/malloc | |
parent | 0350560bdf86df7645578e65551daaaeb3f94ff8 (diff) |
Doc fix.
Diffstat (limited to 'libc/stdlib/malloc')
-rw-r--r-- | libc/stdlib/malloc/heap_free.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/malloc/heap_free.c b/libc/stdlib/malloc/heap_free.c index ad8de5182..a4b5259af 100644 --- a/libc/stdlib/malloc/heap_free.c +++ b/libc/stdlib/malloc/heap_free.c @@ -37,7 +37,7 @@ __heap_free (struct heap *heap, void *mem, size_t size) break; if (fa && HEAP_FREE_AREA_START (fa) <= end) - /* The free-list FA is adjacent to the new block, merge them. */ + /* The free-area FA is adjacent to the new block, merge them. */ { size_t fa_size = fa->size + size; |