diff options
author | Roland McGrath <roland@gnu.org> | 2005-12-06 01:38:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-12-06 01:38:34 +0000 |
commit | 2ce7e666e9f64730bdac1be1c7b43c2375d82826 (patch) | |
tree | 44573949c5a491a52c743d125574e9e27d550fa6 /sysdeps/sh/bits/setjmp.h | |
parent | a6ba1c33efd5895cb35b0e68027b74786f161cfe (diff) | |
download | glibc-2ce7e666e9f64730bdac1be1c7b43c2375d82826.tar.gz glibc-2ce7e666e9f64730bdac1be1c7b43c2375d82826.tar.xz glibc-2ce7e666e9f64730bdac1be1c7b43c2375d82826.zip |
* sysdeps/hppa/bits/setjmp.h: Add _BITS_SETJMP_H preprocessor
protection and allow pthread.h to include bits/setjmp.h as well as setjmp.h. * sysdeps/m68k/bits/setjmp.h: Likewise. * sysdeps/s390/bits/setjmp.h: Make sure only setjmp.h or pthread.h are allow to include bits/setjmp.h. * sysdeps/mips/bits/setjmp.h (_JMPBUF_UNWINDS): Cast rhs to match lhs cast of address. * sysdeps/sh/bits/setjmp.h: Likewise. 2005-11-12 Jim Meyering <jim@meyering.net> * sysdeps/unix/opendir.c (__alloc_dir): Declare STATP parameter to be pointer to const. * include/dirent.h: Update decl.
Diffstat (limited to 'sysdeps/sh/bits/setjmp.h')
-rw-r--r-- | sysdeps/sh/bits/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/sh/bits/setjmp.h b/sysdeps/sh/bits/setjmp.h index d92feea214..242720ca53 100644 --- a/sysdeps/sh/bits/setjmp.h +++ b/sysdeps/sh/bits/setjmp.h @@ -51,6 +51,6 @@ typedef struct /* Test if longjmp to JMPBUF would unwind the frame containing a local variable at ADDRESS. */ #define _JMPBUF_UNWINDS(jmpbuf, address) \ - ((void *) (address) < (jmpbuf)[0].__regs[7]) + ((void *) (address) < (void *) (jmpbuf)[0].__regs[7]) #endif /* bits/setjmp.h */ |