aarch64: fix mismatched type of ucontext_t uc_link member
authorWilliam Pitcock <nenolod@dereferenced.org>
Wed, 31 Jan 2018 23:29:24 +0000 (23:29 +0000)
committerRich Felker <dalias@aerifal.cx>
Thu, 1 Feb 2018 02:59:20 +0000 (21:59 -0500)
arch/aarch64/bits/signal.h

index 5eb3d91f7262b95e044932cd94b2574fcf4f7e15..1c67313d0bd84e877edcd93889be46315acf5f10 100644 (file)
@@ -59,7 +59,7 @@ struct sigaltstack {
 
 typedef struct __ucontext {
        unsigned long uc_flags;
-       struct ucontext *uc_link;
+       struct __ucontext *uc_link;
        stack_t uc_stack;
        sigset_t uc_sigmask;
        mcontext_t uc_mcontext;