Fix build: __unused isn't unused!

Change-Id: I57f2b755d1b2509f9c5504b12a5ff6c50b78b375
This commit is contained in:
Elliott Hughes 2014-04-07 14:36:59 -07:00
parent 47931f8f79
commit 50249bca00

View File

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