mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +00:00
Fix compile on DragonFly: Replace unknown uint32_t/in64_t by u32/i64.
This commit is contained in:
parent
0dbbab9049
commit
52e7f5553e
@ -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,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user