From 50249bca00d2c7d237e67d4d276057bb59508804 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 7 Apr 2014 14:36:59 -0700 Subject: [PATCH] Fix build: __unused isn't unused! Change-Id: I57f2b755d1b2509f9c5504b12a5ff6c50b78b375 --- libc/include/sys/ucontext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/sys/ucontext.h b/libc/include/sys/ucontext.h index b483c166d..f29381bf6 100644 --- a/libc/include/sys/ucontext.h +++ b/libc/include/sys/ucontext.h @@ -86,7 +86,7 @@ typedef struct ucontext { struct ucontext *uc_link; stack_t uc_stack; sigset_t uc_sigmask; - char __unused[128 - sizeof(sigset_t)]; + char __padding[128 - sizeof(sigset_t)]; mcontext_t uc_mcontext; } ucontext_t;