diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-11-16 07:56:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-11-16 07:56:21 +0000 |
commit | ff27f3ae96a8e16cfb9a8690f0cf06d177ce30ef (patch) | |
tree | 876f6ac041c66e5a261657ce9a9927eedc8e459a /sysdeps/sh | |
parent | c2280dc039c69a690dd006c1f145c7ba9aa2eaad (diff) | |
download | glibc-ff27f3ae96a8e16cfb9a8690f0cf06d177ce30ef.zip glibc-ff27f3ae96a8e16cfb9a8690f0cf06d177ce30ef.tar.gz glibc-ff27f3ae96a8e16cfb9a8690f0cf06d177ce30ef.tar.bz2 |
* sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
Diffstat (limited to 'sysdeps/sh')
-rw-r--r-- | sysdeps/sh/bits/setjmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/sh/bits/setjmp.h b/sysdeps/sh/bits/setjmp.h index 2249770..d92feea 100644 --- a/sysdeps/sh/bits/setjmp.h +++ b/sysdeps/sh/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2003, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -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) < (jmpbuf)[0].__regs[7]) #endif /* bits/setjmp.h */ |