From: Roland McGrath Date: Mon, 23 Jun 2014 21:05:14 +0000 (-0700) Subject: Remove an unused variable in fstatvfs. X-Git-Tag: glibc-2.20~262 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fc7236a2853953cce81ccc15a99c9bc1b7a648d;p=thirdparty%2Fglibc.git Remove an unused variable in fstatvfs. --- diff --git a/ChangeLog b/ChangeLog index 08e26514ed8..3e48922906b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-06-23 Roland McGrath + + * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs): + Remove unused variable ST. + 2014-06-23 Joseph Myers [BZ #16354] diff --git a/sysdeps/unix/sysv/linux/fstatvfs.c b/sysdeps/unix/sysv/linux/fstatvfs.c index 689ab7ad10a..08bfe7f5f85 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)