diff mbox series

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

Message ID 81c4473a-5603-ccb0-ccd9-581019c55802@gmail.com
State New
Headers show
Series malloc_info: minor fixes and improvements [BZ #17039] | expand

Commit Message

Ken Milmore May 24, 2018, 12:10 a.m. UTC
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 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);