summaryrefslogtreecommitdiff
path: root/arch/powerpc/bits
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2012-11-21 06:24:05 +0100
committerrofl0r <retnyg@gmx.net>2012-11-21 06:24:05 +0100
commit2df4f6f17b1f14684cb991c53c9ef0ddaa8c7bad (patch)
treece98542c9bee56ec28edac9eb980be5b86a6172e /arch/powerpc/bits
parent3fae236e00068d17e007275717940f5d5e94ba1a (diff)
downloadmusl-2df4f6f17b1f14684cb991c53c9ef0ddaa8c7bad.tar.gz
fix invalid usage of mcontext_t in powerpc signal.h
Diffstat (limited to 'arch/powerpc/bits')
-rw-r--r--arch/powerpc/bits/signal.h2
1 files changed, 1 insertions, 1 deletions
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;