From patchwork Mon Jun 2 18:12:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 355014 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B356A1400A3 for ; Tue, 3 Jun 2014 04:11:11 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=r55xN+hJIHl9rceZWGqCT+DJgFKuT bsF4Waxcm/rEqDoJRUCSCBWEY3xu9vukEyDU8X+esq3tEzs8eShWc9I/K8QQg7LW lSRwg1UCgeJDPfV8xndkFIfR0zI36ZqD+LqhH0zBf+XROdvI54Pk0HHdWt2RwjsV rZtihIpHV3zooM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=5FKdu2yaCXr7TQTqsngLdOnUOew=; b=Mrb ftDAHl5sZkYcmfhgVUnlTW4XpuYXn6KFyNFQJQxmPdc/Mhq56hrRrAKuLNZ2tL0U UoXugd/M3NzIEBA3IJMcYUiLZucx4WuHHmxh66uHZ9g8mU9ctHyziCVf1uxmRTKH XJfYoU0foPQQ9gn9gHSzKR9vz13XUxIqt+F3b/sw= Received: (qmail 6388 invoked by alias); 2 Jun 2014 18:11:05 -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 6372 invoked by uid 89); 2 Jun 2014 18:11:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Date: Mon, 2 Jun 2014 23:42:22 +0530 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [COMMITTED] Fix format specifier for n_mmaps Message-ID: <20140602181222.GD9145@spoyarek.pnq.redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.22.1-rc1 (2013-10-16) Hi, I had put in the wrong format specifier for _mp>n_mmaps - it is an int and not size_t. I have pushed the following commit as obvious. Siddhesh commit 9fa76613d0df2a23e2b979e2303b12d617d6729d Author: Siddhesh Poyarekar Date: Mon Jun 2 23:35:09 2014 +0530 Fix format specifier for n_mmaps diff --git a/ChangeLog b/ChangeLog index 8a55607..75cd049 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-06-02 Siddhesh Poyarekar + + * malloc/malloc.c (malloc_info): Fix format specifier for + n_mmaps. + 2014-06-02 Wilco * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after diff --git a/malloc/malloc.c b/malloc/malloc.c index 79b109d..d8fd8b4 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5148,7 +5148,7 @@ malloc_info (int options, FILE *fp) fprintf (fp, "\n" "\n" - "\n" + "\n" "\n" "\n" "\n"