瀏覽代碼

aarch64: fix mismatched type of ucontext_t uc_link member

William Pitcock 7 年之前
父節點
當前提交
14edadb542
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/aarch64/bits/signal.h

+ 1 - 1
arch/aarch64/bits/signal.h

@@ -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;