]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove an unused variable in fstatvfs.
authorRoland McGrath <roland@hack.frob.com>
Mon, 23 Jun 2014 21:05:14 +0000 (14:05 -0700)
committerRoland McGrath <roland@hack.frob.com>
Mon, 23 Jun 2014 21:05:14 +0000 (14:05 -0700)
ChangeLog
sysdeps/unix/sysv/linux/fstatvfs.c

index 08e26514ed8deb35bee15046792fba269aa6f07d..3e48922906be1a0846ad3f14a3c4734d60bf5fdb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-23  Roland McGrath  <roland@hack.frob.com>
+
+       * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
+       Remove unused variable ST.
+
 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #16354]
index 689ab7ad10a5791243fed544b2a0d36ab2b65876..08bfe7f5f85807d64f1d62d22b079427a6a046aa 100644 (file)
@@ -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)