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

Ken Milmore ken.milmore@gmail.com
Thu May 24 00:10:00 GMT 2018


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



More information about the Libc-alpha mailing list