This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[COMMITTED PATCH] Remove an unused variable in fstatvfs.
- From: Roland McGrath <roland at hack dot frob dot com>
- To: "GNU C. Library" <libc-alpha at sourceware dot org>
- Date: Mon, 23 Jun 2014 14:06:02 -0700 (PDT)
- Subject: [COMMITTED PATCH] Remove an unused variable in fstatvfs.
- Authentication-results: sourceware.org; auth=none
2014-06-23 Roland McGrath <roland@hack.frob.com>
* 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)