From 2df4f6f17b1f14684cb991c53c9ef0ddaa8c7bad Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 21 Nov 2012 06:24:05 +0100 Subject: [PATCH] fix invalid usage of mcontext_t in powerpc signal.h --- arch/powerpc/bits/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h index d633694d..c304450b 100644 --- a/arch/powerpc/bits/signal.h +++ b/arch/powerpc/bits/signal.h @@ -27,7 +27,7 @@ typedef struct __ucontext { struct __ucontext *uc_link; stack_t uc_stack; int uc_pad[7]; - struct mcontext_t *uc_regs; + mcontext_t *uc_regs; sigset_t uc_sigmask; -- 2.20.1