(_JMPBUF_UNWINDS): Compare addresses as pointers, not signed integers.
authorUlrich Drepper <drepper@redhat.com>
Wed, 22 Apr 1998 09:27:22 +0000 (09:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 22 Apr 1998 09:27:22 +0000 (09:27 +0000)
sysdeps/i386/bits/setjmp.h

index 4672922..2f5b445 100644 (file)
@@ -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])