From: rofl0r Date: Wed, 21 Nov 2012 05:24:05 +0000 (+0100) Subject: fix invalid usage of mcontext_t in powerpc signal.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=2df4f6f17b1f14684cb991c53c9ef0ddaa8c7bad fix invalid usage of mcontext_t in powerpc signal.h --- 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;