From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 59678 invoked by alias); 30 Oct 2019 18:53:28 -0000 Mailing-List: contact libc-stable-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: List-Archive: Sender: libc-stable-owner@sourceware.org Received: (qmail 58991 invoked by uid 89); 30 Oct 2019 18:53:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:1209 X-Spam-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: aloka.lostca.se Received: from aloka.lostca.se (HELO aloka.lostca.se) (178.63.46.202) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 30 Oct 2019 18:53:26 +0000 Received: from aloka.lostca.se (aloka [127.0.0.1]) by aloka.lostca.se (Postfix) with ESMTP id B3AEE1122C for ; Wed, 30 Oct 2019 18:53:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=lostca.se; h=date:from:to :subject:message-id:mime-version:content-type; s=howrah; bh=FrOM wW1c86Uh/NLbipM5frH9PzU=; b=DNn1dnvv19R8Ofen+DSTHfP+zaFMnol43510 QcNqVao+kEYQoBa2Bgmgr/x4/MKYBKAcxbZi/6C7mpYEN1v97TEles5obpvdUIF6 wE2Ij/mfgD3ZFESbOQXQ5EwQ/+jBdozlBI1Jwh+9oTeUO6b253CLAqQaKtJ4XuU2 LjzjnMc= Received: from localhost (unknown [IPv6:2a01:4f8:120:624c::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aloka.lostca.se (Postfix) with ESMTPSA id 75DB61122B for ; Wed, 30 Oct 2019 18:53:24 +0000 (UTC) Date: Tue, 01 Jan 2019 00:00:00 -0000 From: Arjun Shankar To: libc-stable@sourceware.org Subject: [2.28 COMMITTED] malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867] Message-ID: <20191030185322.GA15213@aloka.lostca.se> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-IsSubscribed: yes X-SW-Source: 2019-10/txt/msg00006.txt.bz2 It was introduced in commit 6c8dbf00f536d78b1937b5af6f57be47fd376344 ("Reformat malloc to gnu style."). Reviewed-by: Carlos O'Donell (cherry picked from commit b0f6679bcd738ea244a14acd879d974901e56c8e) --- ChangeLog | 6 ++++++ malloc/malloc.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d34e2cf497..7b8a6fd220 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-15 Florian Weimer * malloc/Makefile (tests): Only add tst-mxfast for diff --git a/malloc/malloc.c b/malloc/malloc.c index 23dd6054c5..06e18026f1 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -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, "\ \n", sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count); -- 2.21.0