]> sourceware.org Git - 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)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 1 Aug 2019 12:07:08 +0000 (14:07 +0200)
It was introduced in commit 6c8dbf00f536d78b1937b5af6f57be47fd376344
("Reformat malloc to gnu style.").

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
ChangeLog
malloc/malloc.c

index 17918a129c0ac73a9c828aec6d40c39d2706e212..6d4d4374443801f0eaa17a2987bbb3b6724856cd 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-01  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
        [BZ #15813]
index 00ce48cf5879c87f051af781e9b2d99f384e55dd..343d89f4893e33b95e7648460c4cb7fd6ff382ab 100644 (file)
@@ -5491,7 +5491,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);
 
This page took 0.074281 seconds and 5 git commands to generate.