This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] SH: Fix a typo in jmpbuf-unwind.h


Hi,

I forgot a tiny nptl patch for sh fixing a typo.

Regards,
	kaz
--
2004-02-20  Kaz Kojima  <kkojima@rr.iij4u.or.jp>

	* sysdeps/sh/jmpbuf-unwind.h (_JMPBUF_UNWINDS_ADJ): Fix variable
	name.

diff -u3prN ORIG/libc/nptl/sysdeps/sh/jmpbuf-unwind.h LOCAL/libc/nptl/sysdeps/sh/jmpbuf-unwind.h
--- ORIG/libc/nptl/sysdeps/sh/jmpbuf-unwind.h	Fri Dec 19 10:35:46 2003
+++ LOCAL/libc/nptl/sysdeps/sh/jmpbuf-unwind.h	Fri Feb 20 11:20:24 2004
@@ -25,4 +25,4 @@
   _JMPBUF_UNWINDS_ADJ (_jmpbuf, (void *) _Unwind_GetCFA (_context), _adj)
 
 #define _JMPBUF_UNWINDS_ADJ(jmpbuf, address, adj) \
-  ((uintptr_t) (address) - (adj) < (uintptr_t) (_jmpbuf)[0].__regs[7] - (adj))
+  ((uintptr_t) (address) - (adj) < (uintptr_t) (jmpbuf)[0].__regs[7] - (adj))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]