diff options
author | Sean Anderson <seanga2@gmail.com> | 2014-08-12 05:23:41 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-08-12 05:24:29 -0400 |
commit | bb2ce416563a61bb065f92e022dfd231097d90b6 (patch) | |
tree | 8c01acf75aec6df327729e7edb22cbc2ce8d6d70 | |
parent | 7950a4ee59c8a3d4c17480a368759814989fc290 (diff) | |
download | glibc-bb2ce416563a61bb065f92e022dfd231097d90b6.tar.gz glibc-bb2ce416563a61bb065f92e022dfd231097d90b6.tar.xz glibc-bb2ce416563a61bb065f92e022dfd231097d90b6.zip |
malloc: fix comment typo
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | malloc/malloc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 2cc226b9e7..c73d092a20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-08-12 Sean Anderson <seanga2@gmail.com> + + * malloc/malloc.c: Fix typo in comment. + 2014-08-09 Allan McRae <allan@archlinux.org> * Regenerate libc.po. diff --git a/malloc/malloc.c b/malloc/malloc.c index 41fd76a29e..6ee38401dd 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -22,7 +22,7 @@ This is a version (aka ptmalloc2) of malloc/free/realloc written by Doug Lea and adapted to multiple threads/arenas by Wolfram Gloger. - There have been substantial changesmade after the integration into + There have been substantial changes made after the integration into glibc in all parts of the code. Do not look for much commonality with the ptmalloc2 version. |