diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2019-05-15 20:18:50 +0200 |
---|---|---|
committer | gnzlbg <gonzalobg88@gmail.com> | 2019-05-16 09:15:12 +0200 |
commit | 198ead7247fce8ffb6bdfeb1931ec85285a339ec (patch) | |
tree | 1c5289766dfbffe980b9f3b26d773ee441813507 /src/unix | |
parent | 3ac111c8d0f1ef467aa443b67ff4fd64376d80ec (diff) | |
download | rust-libc-198ead7247fce8ffb6bdfeb1931ec85285a339ec.tar.gz |
ucontext_t ssp field uses c_long and not c_longlog
Diffstat (limited to 'src/unix')
-rw-r--r-- | src/unix/notbsd/linux/other/b32/x86.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unix/notbsd/linux/other/b32/x86.rs b/src/unix/notbsd/linux/other/b32/x86.rs index 9080d17b3e..e7c3b9a83a 100644 --- a/src/unix/notbsd/linux/other/b32/x86.rs +++ b/src/unix/notbsd/linux/other/b32/x86.rs @@ -212,7 +212,7 @@ s_no_extra_traits!{ pub uc_mcontext: mcontext_t, pub uc_sigmask: ::sigset_t, __private: [u8; 112], - __ssp: [::c_ulonglong; 4], + __ssp: [::c_ulong; 4], } } |