From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 86464 invoked by alias); 25 Nov 2019 14:25:17 -0000 Mailing-List: contact glibc-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: , Sender: glibc-cvs-owner@sourceware.org List-Subscribe: Received: (qmail 86421 invoked by uid 9981); 25 Nov 2019 14:25:11 -0000 Date: Mon, 25 Nov 2019 14:25:00 -0000 Message-ID: <20191125142511.86420.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Tulio Magno Quites Machado Filho To: glibc-cvs@sourceware.org Subject: [glibc/ibm/2.30/master] malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867] X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/ibm/2.30/master X-Git-Oldrev: 0a8262a1b269f8f1602933248e69dfb041aab7a2 X-Git-Newrev: be9a328c93834648e0bec106a1f86357d1a8c7e1 X-SW-Source: 2019-q4/txt/msg00420.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=be9a328c93834648e0bec106a1f86357d1a8c7e1 commit be9a328c93834648e0bec106a1f86357d1a8c7e1 Author: Florian Weimer Date: Thu Aug 1 16:48:12 2019 +0200 malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867] It was introduced in commit 6c8dbf00f536d78b1937b5af6f57be47fd376344 ("Reformat malloc to gnu style."). Reviewed-by: Carlos O'Donell (cherry picked from commit b0f6679bcd738ea244a14acd879d974901e56c8e) Diff: --- ChangeLog | 6 ++++++ NEWS | 7 +++++++ malloc/malloc.c | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cdb9e14..a2bf94f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2019-08-01 Florian Weimer + + [BZ #24867] + * malloc/malloc.c (__malloc_info): Remove unwanted leading + whitespace. + 2019-08-01 Carlos O'Donell * version.h (RELEASE): Set to "stable". diff --git a/NEWS b/NEWS index ee9ed4d..2a57721 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,13 @@ See the end for copying conditions. Please send GNU C library bug reports via using `glibc' in the "product" field. +Version 2.30.1 + +The following bugs are resolved with this release: + + [24867] malloc: Remove unwanted leading whitespace in malloc_info + + Version 2.30 Major new features: diff --git a/malloc/malloc.c b/malloc/malloc.c index 00ce48c..343d89f 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -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, "\ \n", sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);