diff mbox series

[RFC,2/4] malloc_info: remove extraneous output indentation

Message ID ecc4e5f1-73ad-2965-372f-1de859b77960@gmail.com
State New
Headers show
Series malloc_info: minor fixes and improvements [BZ #17039] | expand

Commit Message

Ken Milmore April 30, 2018, 9 p.m. UTC
---
 malloc/malloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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);