From patchwork Thu May 24 00:10:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ken Milmore X-Patchwork-Id: 27475 Received: (qmail 103967 invoked by alias); 24 May 2018 00:10:43 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 103681 invoked by uid 89); 24 May 2018 00:10:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:799, H*r:sk:l41-v6s X-HELO: mail-wr0-f174.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:subject:to:message-id:date:user-agent :mime-version:content-language:content-transfer-encoding; bh=JvsNKrnQDNx+Pf/ntVb6ey5ULzJDgd95aPQRk2Pc/u8=; b=T+xs50IDze9U+dMLtT8B7bGQraws71HrvdL4vOM2nvS4THsMZfI3JwaROm3hgIzZ/k xRR6wjXtKGVQpp5e3/HrxhUAfjBiU+Yp8kvtLTSxAm05jajU9w8rK0O0+y23PuvR3CBx ZVKh4G5DC9/Hi6DZrSHrBOy0lO2ULW/QXLf4v+tXNiQ0SMl9IL/xaWrHa9HOOrKziSJt FzqzX1c2AGGDev/y03g3G+mB1bX17AW2VxyEdzQR7CNgCezFGZtnZUtrho54FwozyaRm 5Yqnf6WoEN0HsnPYOKOjUERab45OnxhOS+IhzPfZo4/07TWSkRjQfZRXd9EBOrh2n+Wc wZIg== X-Gm-Message-State: ALKqPwe6m9jmf+vSZtfoOIB8lp3voPwrV1J4bSb2MHcTFV10q9Sm6wNE IYZKeE1FxSLWR8KQYGPLUqE= X-Google-Smtp-Source: AB8JxZpXc17clTYOqvwvGsgfUx8G5YrqJ5ofD+H0fj3PA4Z0tXdnIwTOxYzlzZpdPYj9SY9guJbk/g== X-Received: by 2002:adf:cc8c:: with SMTP id p12-v6mr3960249wrj.280.1527120632950; Wed, 23 May 2018 17:10:32 -0700 (PDT) From: Ken Milmore Subject: [RFC][PATCH 2/4] malloc_info: remove extraneous output indentation To: libc-alpha@sourceware.org, Carlos O'Donell Message-ID: <81c4473a-5603-ccb0-ccd9-581019c55802@gmail.com> Date: Thu, 24 May 2018 01:10:31 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Remove excessive whitespace indentation (7 tabs + 6 spaces) from some malloc_info() output and replace with a consistent indent of 2 spaces. * malloc/malloc.c (__malloc_info): Remove extraneous output indentation. --- malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/malloc.c b/malloc/malloc.c index c0f1b26e1e..dc0a96ed13 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5511,7 +5511,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);