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.16-ports-merge-583-g341dd67


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  341dd67392b90af0e76913d0779b1bdafe64d1e4 (commit)
      from  473611b22d630a5cbb870d2a7edf08071d4d8ace (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=341dd67392b90af0e76913d0779b1bdafe64d1e4

commit 341dd67392b90af0e76913d0779b1bdafe64d1e4
Author: Thomas Schwinge <thomas@codesourcery.com>
Date:   Thu Nov 1 17:50:30 2012 +0100

    Change type of constant to avoid a warning.
    
    Warning has been introduced in commit 7583a88d1c7170caad26966bcea8bfc2c92093ba.

diff --git a/ChangeLog b/ChangeLog
index a042ebf..7024d8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
+
+	* libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
+	__libc_cleanup_region_start argument.
+
 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #14784]
diff --git a/libio/genops.c b/libio/genops.c
index 0a81a5d..61e59f9 100644
--- a/libio/genops.c
+++ b/libio/genops.c
@@ -822,7 +822,7 @@ _IO_flush_all_lockp (int do_lock)
   int last_stamp;
 
 #ifdef _IO_MTSAFE_IO
-  __libc_cleanup_region_start (do_lock, flush_cleanup, 0);
+  __libc_cleanup_region_start (do_lock, flush_cleanup, NULL);
   if (do_lock)
     _IO_lock_lock (list_all_lock);
 #endif

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

Summary of changes:
 ChangeLog      |    5 +++++
 libio/genops.c |    2 +-
 2 files changed, 6 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]