diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | elf/tst-execstack.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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; |