Skip to content

Commit

Permalink
Rollup merge of #30925 - semarie:blksize_t, r=alexcrichton
Browse files Browse the repository at this point in the history
make `os::raw::tests::unix` test to pass again

r? @alexcrichton
  • Loading branch information
Manishearth committed Jan 15, 2016
2 parents 22cbdd4 + b1d8554 commit 4f8d584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/os/openbsd/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4f8d584

Please sign in to comment.