diff options
author | Jorge Aparicio <japaricious@gmail.com> | 2016-09-12 23:41:17 -0500 |
---|---|---|
committer | Jorge Aparicio <japaricious@gmail.com> | 2016-09-12 23:41:17 -0500 |
commit | 41101f2a4fcf45a150c263a019a74253059ca385 (patch) | |
tree | e6c1e09d4f24e562dfc38d261d4813af8b15c7ba /src | |
parent | 56c87dedaff051fbb7c42d0d5c3bad2ec936f3b3 (diff) | |
download | rust-libc-41101f2a4fcf45a150c263a019a74253059ca385.tar.gz |
linux: make statvfs.__f_unused private
Diffstat (limited to 'src')
-rw-r--r-- | src/unix/notbsd/linux/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs index 7c91dc1766..47bb55415b 100644 --- a/src/unix/notbsd/linux/mod.rs +++ b/src/unix/notbsd/linux/mod.rs @@ -129,7 +129,7 @@ s! { #[cfg(target_endian = "little")] pub f_fsid: ::c_ulong, #[cfg(target_pointer_width = "32")] - pub __f_unused: ::c_int, + __f_unused: ::c_int, #[cfg(target_endian = "big")] pub f_fsid: ::c_ulong, pub f_flag: ::c_ulong, |