diff options
| author | bors <bors@rust-lang.org> | 2015-09-02 14:51:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-09-02 14:51:11 +0000 |
| commit | ef02ffa9fbb3d9cf6c597e30e6c81265bec6072e (patch) | |
| tree | 83422432de5ee793a71199535765687288f474e7 /src/libstd | |
| parent | 370fe2786109360f7c35b8ba552b83b773dd71d6 (diff) | |
| parent | 52e7f5553e85cc939b25b478f83c32b91dc3885e (diff) | |
| download | rust-ef02ffa9fbb3d9cf6c597e30e6c81265bec6072e.tar.gz rust-ef02ffa9fbb3d9cf6c597e30e6c81265bec6072e.zip | |
Auto merge of #28162 - mneumann:dragonfly_fix_stat, r=alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os/dragonfly/raw.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/os/dragonfly/raw.rs b/src/libstd/os/dragonfly/raw.rs index 41e8f9b0567..1c265fa62f1 100644 --- a/src/libstd/os/dragonfly/raw.rs +++ b/src/libstd/os/dragonfly/raw.rs @@ -65,11 +65,11 @@ pub struct stat { #[stable(feature = "raw_ext", since = "1.1.0")] pub st_flags: fflags_t, #[stable(feature = "raw_ext", since = "1.1.0")] - pub st_gen: uint32_t, + pub st_gen: u32, #[stable(feature = "raw_ext", since = "1.1.0")] - pub st_lspare: int32_t, + pub st_lspare: i32, #[stable(feature = "raw_ext", since = "1.1.0")] - pub st_qspare1: int64_t, + pub st_qspare1: i64, #[stable(feature = "raw_ext", since = "1.1.0")] - pub st_qspare2: int64_t, + pub st_qspare2: i64, } |
