From fad64255f4b49e3acb506b2a09972c2ff1255f8a Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Wed, 5 Sep 2012 15:19:44 -0300 Subject: Fix typos in malloc/. * malloc/mcheck.c (mcheck_check_all): Fix typo. * malloc/memusage.c (mmap): Likewise. (mmap64, mremap): Likewise. Adjust name in comment. --- ChangeLog | 6 ++++++ malloc/mcheck.c | 2 +- malloc/memusage.c | 6 +++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 244dc80800..db63a81d0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-09-05 Alexandre Oliva + + * malloc/mcheck.c (mcheck_check_all): Fix typo. + * malloc/memusage.c (mmap): Likewise. + (mmap64, mremap): Likewise. Adjust name in comment. + 2012-09-05 Siddhesh Poyarekar * libio/fileops.c: Fix typos in comments. diff --git a/malloc/mcheck.c b/malloc/mcheck.c index 9d8a414676..430f87139d 100644 --- a/malloc/mcheck.c +++ b/malloc/mcheck.c @@ -122,7 +122,7 @@ checkhdr (const struct hdr *hdr) void mcheck_check_all (void) { - /* Walk through all the active blocks and test whether they were tempered + /* Walk through all the active blocks and test whether they were tampered with. */ struct hdr *runp = root; diff --git a/malloc/memusage.c b/malloc/memusage.c index d26c4beb0c..2f6b6b57ba 100644 --- a/malloc/memusage.c +++ b/malloc/memusage.c @@ -564,7 +564,7 @@ free (void *ptr) } -/* `mmap' replacement. We do not have to keep track of the sizesince +/* `mmap' replacement. We do not have to keep track of the size since `munmap' will get it as a parameter. */ void * mmap (void *start, size_t len, int prot, int flags, int fd, off_t offset) @@ -616,7 +616,7 @@ mmap (void *start, size_t len, int prot, int flags, int fd, off_t offset) } -/* `mmap' replacement. We do not have to keep track of the sizesince +/* `mmap64' replacement. We do not have to keep track of the size since `munmap' will get it as a parameter. */ void * mmap64 (void *start, size_t len, int prot, int flags, int fd, off64_t offset) @@ -668,7 +668,7 @@ mmap64 (void *start, size_t len, int prot, int flags, int fd, off64_t offset) } -/* `mmap' replacement. We do not have to keep track of the sizesince +/* `mremap' replacement. We do not have to keep track of the size since `munmap' will get it as a parameter. */ void * mremap (void *start, size_t old_len, size_t len, int flags, ...) -- cgit 1.4.1