diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-03-04 18:36:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-03-04 18:36:27 +0000 |
commit | c958a6a4e50ac7ca8d72e518825a474d17850119 (patch) | |
tree | ecd6b625814eafc02278be37bde382eebb5a024b | |
parent | d835f13696fd65d38da66ef79ba5f045046fc88f (diff) | |
download | glibc-c958a6a4e50ac7ca8d72e518825a474d17850119.zip glibc-c958a6a4e50ac7ca8d72e518825a474d17850119.tar.gz glibc-c958a6a4e50ac7ca8d72e518825a474d17850119.tar.bz2 |
[BZ #5736]
* malloc/malloc.c: Fix typo in comment.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | localedata/ChangeLog | 10 | ||||
-rw-r--r-- | malloc/malloc.c | 2 |
3 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2008-03-04 Ulrich Drepper <drepper@redhat.com> + [BZ #5736] + * malloc/malloc.c: Fix typo in comment. + [BZ #5627] * locale/iso-639.def: Add Shuswap. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 2a35fc6..342f49c 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,13 @@ +2008-03-04 Ulrich Drepper <drepper@redhat.com> + + * locales/en_CA: Add language information in LC_ADDRESS section. + * locales/fr_CA: Likewise. + * locales/ik_CA: Likewise. + * locales/iu_CA: Likewise. + + [BZ #5627] + * locales/shs_CA: New file. + 2008-01-10 Ulrich Drepper <drepper@redhat.com> [BZ #5520] diff --git a/malloc/malloc.c b/malloc/malloc.c index e00eb0f..7610aa4 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1186,7 +1186,7 @@ void public_cFREe(); Malloc_trim returns 1 if it actually released any memory, else 0. On systems that do not support "negative sbrks", it will always - rreturn 0. + return 0. */ #if __STD_C int public_mTRIm(size_t); |