]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
authorUlrich Drepper <drepper@redhat.com>
Wed, 16 Nov 2005 07:56:21 +0000 (07:56 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 16 Nov 2005 07:56:21 +0000 (07:56 +0000)
ChangeLog
sysdeps/sh/bits/setjmp.h

index 333522c7b8068f9ab063b9a4fcf754c104be53c2..8feefa9b31d59d8cf48c899528efe3a9fd79a61f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
+
+       * sysdeps/sh/bits/setjmp.h (_JMPBUF_UNWINDS): Remove incorrect &.
+
 2005-11-15  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ 1865]
index 22497703afea4f5395b3558dec7fb29345ffa973..d92feea2142201b5b18331af9d83c28ee8d2f7f7 100644 (file)
@@ -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 */
This page took 0.049815 seconds and 5 git commands to generate.