This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[RFC][PATCH 2/4] malloc_info: remove extraneous output indentation
- From: Ken Milmore <ken dot milmore at gmail dot com>
- To: libc-alpha at sourceware dot org, Carlos O'Donell <carlos at redhat dot com>
- Date: Thu, 24 May 2018 01:10:31 +0100
- Subject: [RFC][PATCH 2/4] malloc_info: remove extraneous output indentation
Remove excessive whitespace indentation (7 tabs + 6 spaces) from some
malloc_info() output and replace with a consistent indent of 2 spaces.
* malloc/malloc.c (__malloc_info): Remove extraneous output
indentation.
---
malloc/malloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/malloc/malloc.c b/malloc/malloc.c
index c0f1b26e1e..dc0a96ed13 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -5511,7 +5511,7 @@ __malloc_info (int options, FILE *fp)
for (size_t i = 0; i < nsizes; ++i)
if (sizes[i].count != 0 && i != NFASTBINS)
- fprintf (fp, " \
+ fprintf (fp, "\
<size from=\"%zu\" to=\"%zu\" total=\"%zu\" count=\"%zu\"/>\n",
sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);
--
2.11.0