diff options
Diffstat (limited to 'sysdeps/s390/s390-32/bits')
-rw-r--r-- | sysdeps/s390/s390-32/bits/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/s390/s390-32/bits/setjmp.h b/sysdeps/s390/s390-32/bits/setjmp.h index fa6e03b4be..607cdaf11a 100644 --- a/sysdeps/s390/s390-32/bits/setjmp.h +++ b/sysdeps/s390/s390-32/bits/setjmp.h @@ -47,6 +47,6 @@ typedef struct { /* Test if longjmp to JMPBUF would unwind the frame containing a local variable at ADDRESS. */ #define _JMPBUF_UNWINDS(jmpbuf, address) \ - ((int) (address) < (jmpbuf)->__gregs[__JB_GPR15]) + ((void *) (address) < (void *) (jmpbuf)->__gregs[__JB_GPR15]) #endif /* __S390_SETJMP_H__ */ |