Skip to content

Commit

Permalink
update blksize_t in raw to reflect libc change under openbsd
Browse files Browse the repository at this point in the history
  • Loading branch information
semarie committed Jan 14, 2016
1 parent e5bab5d commit b1d8554
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 b1d8554

Please sign in to comment.