diff options
author | Jim Meyering <jim@meyering.net> | 2011-04-22 21:34:32 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-22 21:34:32 -0400 |
commit | ded5b9b7c7c0afc7edc520911d76558564638bda (patch) | |
tree | ec9520664a3c01f979e2be5d07ceb678e6226a46 /malloc | |
parent | e84142d2a9eed278ecf869459a5de0b640074517 (diff) | |
download | glibc-ded5b9b7c7c0afc7edc520911d76558564638bda.tar.gz |
Remove doubled words.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 3e06b8755b..dccb6cc4fd 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1,5 +1,5 @@ /* Malloc implementation for multiple threads without lock contention. - Copyright (C) 1996-2009, 2010 Free Software Foundation, Inc. + Copyright (C) 1996-2009, 2010, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Wolfram Gloger <wg@malloc.de> and Doug Lea <dl@cs.oswego.edu>, 2001. @@ -2774,7 +2774,7 @@ mstate av; mchunkptr p; INTERNAL_SIZE_T s; always true of any allocated chunk; i.e., that each allocated chunk borders either a previously allocated and still in-use chunk, or the base of its memory arena. This is ensured - by making all allocations from the the `lowest' part of any found + by making all allocations from the `lowest' part of any found chunk. This does not necessarily hold however for chunks recycled via fastbins. */ |