diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-11-26 16:42:38 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-11-26 16:45:36 -0800 |
commit | c515fb5148f1d81d5f7736825e14c7502c15432a (patch) | |
tree | bffe0f355bac8c00df91b12a1feddc768677bc5d /nptl/unwind.c | |
parent | 4cf77aa9847aac13bf65c977396b6e8a66337238 (diff) | |
download | glibc-c515fb5148f1d81d5f7736825e14c7502c15432a.tar.gz glibc-c515fb5148f1d81d5f7736825e14c7502c15432a.tar.xz glibc-c515fb5148f1d81d5f7736825e14c7502c15432a.zip |
Cast to __intptr_t before casting pointer to int64
Diffstat (limited to 'nptl/unwind.c')
-rw-r--r-- | nptl/unwind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/unwind.c b/nptl/unwind.c index 7ccb21382b..aedd037452 100644 --- a/nptl/unwind.c +++ b/nptl/unwind.c @@ -124,7 +124,7 @@ __pthread_unwind (__pthread_unwind_buf_t *buf) /* This is not a catchable exception, so don't provide any details about the exception type. We do need to initialize the field though. */ THREAD_SETMEM (self, exc.exception_class, 0); - THREAD_SETMEM (self, exc.exception_cleanup, unwind_cleanup); + THREAD_SETMEM (self, exc.exception_cleanup, &unwind_cleanup); _Unwind_ForcedUnwind (&self->exc, unwind_stop, ibuf); #else |