diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-06-23 14:05:14 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-06-23 14:05:14 -0700 |
commit | 3fc7236a2853953cce81ccc15a99c9bc1b7a648d (patch) | |
tree | 8c3e654c45a9039030e9b2c7da33ea677455a29e /sysdeps/unix/sysv | |
parent | 4648909d56c1e9063017bcddd3271dffadef7cb5 (diff) | |
download | glibc-3fc7236a2853953cce81ccc15a99c9bc1b7a648d.tar.gz glibc-3fc7236a2853953cce81ccc15a99c9bc1b7a648d.tar.xz glibc-3fc7236a2853953cce81ccc15a99c9bc1b7a648d.zip |
Remove an unused variable in fstatvfs.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/fstatvfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
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) |