mirror of git://sourceware.org/git/glibc.git
Fix typos in format strings of malloc_info.
This commit is contained in:
parent
5debe36313
commit
ee6f35389c
|
|
@ -1,5 +1,9 @@
|
||||||
2009-10-29 Ulrich Drepper <drepper@redhat.com>
|
2009-10-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #10553]
|
||||||
|
* malloc/malloc.c (malloc_info): Fix typos in format strings.
|
||||||
|
Patch by John Sullivan <jsrhbz@kanargh.force9.co.uk>.
|
||||||
|
|
||||||
[BZ #10564]
|
[BZ #10564]
|
||||||
* login/utmp_file.c (TIMEOUT): Increase to 10.
|
* login/utmp_file.c (TIMEOUT): Increase to 10.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6474,8 +6474,8 @@ malloc_info (int options, FILE *fp)
|
||||||
fprintf (fp,
|
fprintf (fp,
|
||||||
"<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
|
"<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
|
||||||
"<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
|
"<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
|
||||||
"<system type=\"current\" size=\"%zu\n/>\n"
|
"<system type=\"current\" size=\"%zu\"/>\n"
|
||||||
"<system type=\"max\" size=\"%zu\n/>\n"
|
"<system type=\"max\" size=\"%zu\"/>\n"
|
||||||
"<aspace type=\"total\" size=\"%zu\"/>\n"
|
"<aspace type=\"total\" size=\"%zu\"/>\n"
|
||||||
"<aspace type=\"mprotect\" size=\"%zu\"/>\n"
|
"<aspace type=\"mprotect\" size=\"%zu\"/>\n"
|
||||||
"</malloc>\n",
|
"</malloc>\n",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue