diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-01-15 17:28:29 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-01-15 17:28:29 +0530 |
| commit | 4f8d584aa586a4e31be3b73233d37cd0ee2ba03b (patch) | |
| tree | 88ad81e57e6ad22f242754edf6143167fda74a5a /src/libstd | |
| parent | 22cbdd4b8908b1f47532403e42df951f49d67ebd (diff) | |
| parent | b1d8554698cd0edba35c4b7b551d15e30e7c37d8 (diff) | |
| download | rust-4f8d584aa586a4e31be3b73233d37cd0ee2ba03b.tar.gz rust-4f8d584aa586a4e31be3b73233d37cd0ee2ba03b.zip | |
Rollup merge of #30925 - semarie:blksize_t, r=alexcrichton
make `os::raw::tests::unix` test to pass again r? @alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os/openbsd/raw.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os/openbsd/raw.rs b/src/libstd/os/openbsd/raw.rs index 209546c4e4f..b4d49395303 100644 --- a/src/libstd/os/openbsd/raw.rs +++ b/src/libstd/os/openbsd/raw.rs @@ -16,7 +16,7 @@ use os::raw::c_long; use os::unix::raw::{uid_t, gid_t}; #[stable(feature = "raw_ext", since = "1.1.0")] pub type blkcnt_t = i64; -#[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = u32; +#[stable(feature = "raw_ext", since = "1.1.0")] pub type blksize_t = i32; #[stable(feature = "raw_ext", since = "1.1.0")] pub type dev_t = i32; #[stable(feature = "raw_ext", since = "1.1.0")] pub type fflags_t = u32; #[stable(feature = "raw_ext", since = "1.1.0")] pub type ino_t = u64; |
