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.10-412-g3005703


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  3005703bb9aff3b2a1b2cf6bbbc92e7eaf91d9a5 (commit)
      from  1c52a97a1eca78699c7c115857a2c36d9e53cf64 (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=3005703bb9aff3b2a1b2cf6bbbc92e7eaf91d9a5

commit 3005703bb9aff3b2a1b2cf6bbbc92e7eaf91d9a5
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Fri Oct 30 09:26:00 2009 -0700

    Add cast in tst-execstack to avoid warning.

diff --git a/ChangeLog b/ChangeLog
index 5aba2e5..25a89c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2009-10-30  Ulrich Drepper  <drepper@redhat.com>
 
+	* elf/tst-execstack.c (do_test): Add cast to avoid warning.
+
 	* stdio-common/scanf13.c (main): Remove unused variable wbuf.
 
 	* stdlib/tst-strtol.c (tests): Mark one more constant as unsigned
diff --git a/elf/tst-execstack.c b/elf/tst-execstack.c
index a835e4c..6632e53 100644
--- a/elf/tst-execstack.c
+++ b/elf/tst-execstack.c
@@ -148,7 +148,7 @@ do_test (void)
      Let them run to test it.  */
   pthread_barrier_wait (&go_barrier);
 
-  pthread_exit (! allow_execstack);
+  pthread_exit ((void *) (long int) (! allow_execstack));
 #endif
 
   return ! allow_execstack;

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

Summary of changes:
 ChangeLog           |    2 ++
 elf/tst-execstack.c |    2 +-
 2 files changed, 3 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]