diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/fstatvfs.c | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -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] diff --git a/sysdeps/unix/sysv/linux/fstatvfs.c b/sysdeps/unix/sysv/linux/fstatvfs.c index 689ab7ad10..08bfe7f5f8 100644 --- 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) |