commit | 60ba211d2b1b4205063419b0933cba711b1547d6 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Apr 07 21:37:47 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Apr 07 21:37:47 2014 +0000 |
tree | e89fde93c296d0279b7708a53ee58065b723d736 | |
parent | 47931f8f796b736bd229b6669efcf428108abc47 [diff] | |
parent | 50249bca00d2c7d237e67d4d276057bb59508804 [diff] |
Merge "Fix build: __unused isn't unused!"
diff --git a/libc/include/sys/ucontext.h b/libc/include/sys/ucontext.h index b483c16..f29381b 100644 --- a/libc/include/sys/ucontext.h +++ b/libc/include/sys/ucontext.h
@@ -86,7 +86,7 @@ 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;