[COMMITTED] Remove an unused variable in fstatvfs.

Message ID 20140623210602.9A4662C39AC@topped-with-meat.com
State Committed
Headers

Commit Message

Roland McGrath June 23, 2014, 9:06 p.m. UTC
  2014-06-23  Roland McGrath  <roland@hack.frob.com>

	* sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
	Remove unused variable ST.
  

Patch

--- 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)