]> 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>
Mon, 18 Nov 2019 15:02:10 +0000 (16:02 +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 a58505952e1275ad909266dec61f08b815850c9f..95411e59a65e78e20a6a5d1936b15c8a88cca37e 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-05-17  Wilco Dijkstra  <wdijkstr@arm.com>
 
        * malloc/malloc.c (MAX_TCACHE_COUNT): Increase to UINT16_MAX.
index 31636014922c0210954205f8b1d9f094aae24df3..f1e5eb878a93dc1d27fd8dc6703da21c811faa19 100644 (file)
@@ -5518,7 +5518,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);