aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/i386/bits/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/bits/setjmp.h')
-rw-r--r--sysdeps/i386/bits/setjmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/bits/setjmp.h b/sysdeps/i386/bits/setjmp.h
index 46729224fd..2f5b44531a 100644
--- a/sysdeps/i386/bits/setjmp.h
+++ b/sysdeps/i386/bits/setjmp.h
@@ -38,4 +38,4 @@ typedef int __jmp_buf[6];
/* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \
- ((int) (address) < (jmpbuf)[JB_SP])
+ ((void *) (address) < (void *) (jmpbuf)[JB_SP])