]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867]
authorFlorian Weimer <fweimer@redhat.com>
Thu, 1 Aug 2019 12:06:24 +0000 (14:06 +0200)
committerArjun Shankar <ashankar@redhat.com>
Wed, 30 Oct 2019 18:32:56 +0000 (19:32 +0100)
It was introduced in commit 6c8dbf00f536d78b1937b5af6f57be47fd376344
("Reformat malloc to gnu style.").

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit b0f6679bcd738ea244a14acd879d974901e56c8e)

ChangeLog
malloc/malloc.c

index d34e2cf497ee99620b6ca61ca1d121e86e4cd9b6..7b8a6fd2204147ac4659d83bd18feff50a2abc16 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-08-01  Florian Weimer  <fweimer@redhat.com>
+
+       [BZ #24867]
+       * malloc/malloc.c (__malloc_info): Remove unwanted leading
+       whitespace.
+
 2019-08-15  Florian Weimer  <fweimer@redhat.com>
 
        * malloc/Makefile (tests): Only add tst-mxfast for
index 23dd6054c588f1e288697f0505750289c43ae6b2..06e18026f1bd023edb8e6c698fec0373b54ea629 100644 (file)
@@ -5523,7 +5523,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);