From patchwork Mon Jun 23 21:06:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 363124 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 8CC1214008B for ; Tue, 24 Jun 2014 07:06:13 +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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=dHAEKPHacEClpqp5Y7I6jTbStkv98FR5EefAW+t2e2fy0j zMQNUTx9p1OLefC9uC60Rz5kWWiXHb9VmE9YUzXuSg1wRMOTpT8E6Jj/0hVWcOP3 4W8JuQRnrThQaM63AxII4AawD/nv3/aOp6Oirn4EtMPRridFOZ3/Tfojd5xlI= 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:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=M6LsB5vEWMzkwiN3KtC6ZXapp/g=; b=L1s4f9FoOA7OLmbOajn2 BUcVpALLPqvhxyO+VvPdcfg1DKFOJLecr2tntP/mp72mFvj7Qap12dNIo1Ut4U+Q vSBZTDXVubj6tOY+oX6uqSSbwz3zOqX6Buzl76nJNY0re6zZi8FrCRb2LlZ70F8z R7b93HGv6BnPPGQTmTaOd5Y= Received: (qmail 30061 invoked by alias); 23 Jun 2014 21:06:06 -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 30048 invoked by uid 89); 23 Jun 2014 21:06:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] Remove an unused variable in fstatvfs. Message-Id: <20140623210602.9A4662C39AC@topped-with-meat.com> Date: Mon, 23 Jun 2014 14:06:02 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=7qYDStUtUUgA:10 a=Z6MIti7PxpgA:10 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=uAYhXD7hsJaGbXQVEjEA:9 a=CjuIK1q_8ugA:10 a=Oi_IAZAnQk8A:10 a=Vq5jhXC5Lz4A:10 a=PsdEMHnUfLIA:10 2014-06-23 Roland McGrath * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs): Remove unused variable ST. --- a/sysdeps/unix/sysv/linux/fstatvfs.c +++ b/sysdeps/unix/sysv/linux/fstatvfs.c @@ -29,7 +29,6 @@ int fstatvfs (int fd, struct statvfs *buf) { struct statfs fsbuf; - struct stat64 st; /* Get as much information as possible from the system. */ if (__fstatfs (fd, &fsbuf) < 0)