diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-11-20 22:48:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-11-20 22:48:12 +0000 |
commit | 77f1e09a99848129f3b5e850e08ece84fe8ca542 (patch) | |
tree | 18f32eb45f23f729cf5663515e06ecd84361a137 /nptl/sysdeps/pthread | |
parent | ee72b97189983768c306bcd7a8b5a7bfdfbf8aae (diff) | |
download | glibc-77f1e09a99848129f3b5e850e08ece84fe8ca542.tar.gz glibc-77f1e09a99848129f3b5e850e08ece84fe8ca542.tar.xz glibc-77f1e09a99848129f3b5e850e08ece84fe8ca542.zip |
* sysdeps/pthread/pthread.h (pthread_cleanup_push,
pthread_cleanup_push_defer_np): Add extra (void *) cast to shut up g++ 4.1 and 4.2 -Wstrict-aliasing warnings.
Diffstat (limited to 'nptl/sysdeps/pthread')
-rw-r--r-- | nptl/sysdeps/pthread/pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h index d175f312ee..59126fcf52 100644 --- a/nptl/sysdeps/pthread/pthread.h +++ b/nptl/sysdeps/pthread/pthread.h @@ -638,7 +638,7 @@ __pthread_cleanup_routine (struct __pthread_cleanup_frame *__frame) __pthread_unwind_buf_t __cancel_buf; \ void (*__cancel_routine) (void *) = (routine); \ void *__cancel_arg = (arg); \ - int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) \ + int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \ __cancel_buf.__cancel_jmp_buf, 0); \ if (__builtin_expect (not_first_call, 0)) \ { \ @@ -672,7 +672,7 @@ extern void __pthread_unregister_cancel (__pthread_unwind_buf_t *__buf) __pthread_unwind_buf_t __cancel_buf; \ void (*__cancel_routine) (void *) = (routine); \ void *__cancel_arg = (arg); \ - int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) \ + int not_first_call = __sigsetjmp ((struct __jmp_buf_tag *) (void *) \ __cancel_buf.__cancel_jmp_buf, 0); \ if (__builtin_expect (not_first_call, 0)) \ { \ |