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
- Date: Mon, 30 Apr 2018 22:00:06 +0100
- Subject: [RFC][PATCH 2/4] 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