This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-650-g3fc7236


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  3fc7236a2853953cce81ccc15a99c9bc1b7a648d (commit)
      from  4648909d56c1e9063017bcddd3271dffadef7cb5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3fc7236a2853953cce81ccc15a99c9bc1b7a648d

commit 3fc7236a2853953cce81ccc15a99c9bc1b7a648d
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Jun 23 14:05:14 2014 -0700

    Remove an unused variable in fstatvfs.

diff --git a/ChangeLog b/ChangeLog
index 08e2651..3e48922 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 689ab7a..08bfe7f 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)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                          |    5 +++++
 sysdeps/unix/sysv/linux/fstatvfs.c |    1 -
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]