mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
Add cast in tst-execstack to avoid warning.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2009-10-30 Ulrich Drepper <drepper@redhat.com>
|
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.
|
* stdio-common/scanf13.c (main): Remove unused variable wbuf.
|
||||||
|
|
||||||
* stdlib/tst-strtol.c (tests): Mark one more constant as unsigned
|
* stdlib/tst-strtol.c (tests): Mark one more constant as unsigned
|
||||||
|
@ -148,7 +148,7 @@ do_test (void)
|
|||||||
Let them run to test it. */
|
Let them run to test it. */
|
||||||
pthread_barrier_wait (&go_barrier);
|
pthread_barrier_wait (&go_barrier);
|
||||||
|
|
||||||
pthread_exit (! allow_execstack);
|
pthread_exit ((void *) (long int) (! allow_execstack));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return ! allow_execstack;
|
return ! allow_execstack;
|
||||||
|
Reference in New Issue
Block a user