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.15-239-g4579f81


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  4579f81caf7fbfd17db43699e6352a8e4c26421f (commit)
      from  22f9d9df92ee5ce1f12d7bec598e718fb06b571a (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4579f81caf7fbfd17db43699e6352a8e4c26421f

commit 4579f81caf7fbfd17db43699e6352a8e4c26421f
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Feb 27 13:29:12 2012 -0800

    Remove a spurious const in tst-fmemopen.

diff --git a/ChangeLog b/ChangeLog
index 3f64fd8..7210eb7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-02-27  Roland McGrath  <roland@hack.frob.com>
+
+	* stdio-common/tst-fmemopen.c (main): Remove spurious const.
+
 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
 
 	* manual/install.texi (--with-headers): Describe headers as
diff --git a/stdio-common/tst-fmemopen.c b/stdio-common/tst-fmemopen.c
index 8aa047e..206bfd7 100644
--- a/stdio-common/tst-fmemopen.c
+++ b/stdio-common/tst-fmemopen.c
@@ -11,7 +11,7 @@
 int
 main (int argc, char **argv)
 {
-  const char *test_file;
+  char *test_file;
   const char blah[] = "BLAH";
   FILE *fp;
   char *mmap_data;

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

Summary of changes:
 ChangeLog                   |    4 ++++
 stdio-common/tst-fmemopen.c |    2 +-
 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]