From a38baad7f3343c99f65e8ebb2ccfb02b83cc417c Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Fri, 17 Jan 2003 07:48:52 +0000 Subject: [PATCH] (unw_init_local): Fix typo: the context type should be unw_context_t. (Logical change 1.35) --- include/libunwind-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libunwind-common.h b/include/libunwind-common.h index 9d48923e..51765e02 100644 --- a/include/libunwind-common.h +++ b/include/libunwind-common.h @@ -214,7 +214,7 @@ extern int UNW_ARCH_OBJ(set_caching_policy)(unw_addr_space_t as, unw_caching_policy_t policy); extern const char *UNW_ARCH_OBJ(regname) (int regnum); -extern int UNW_OBJ(init_local) (unw_cursor_t *c, ucontext_t *u); +extern int UNW_OBJ(init_local) (unw_cursor_t *c, unw_context_t *u); extern int UNW_OBJ(init_remote) (unw_cursor_t *c, unw_addr_space_t as, void *as_arg); extern int UNW_OBJ(step) (unw_cursor_t *c);