Skip to content

Commit 52e7f55

Browse files
committed
Fix compile on DragonFly: Replace unknown uint32_t/in64_t by u32/i64.
1 parent 0dbbab9 commit 52e7f55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libstd/os/dragonfly/raw.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ pub struct stat {
6565
#[stable(feature = "raw_ext", since = "1.1.0")]
6666
pub st_flags: fflags_t,
6767
#[stable(feature = "raw_ext", since = "1.1.0")]
68-
pub st_gen: uint32_t,
68+
pub st_gen: u32,
6969
#[stable(feature = "raw_ext", since = "1.1.0")]
70-
pub st_lspare: int32_t,
70+
pub st_lspare: i32,
7171
#[stable(feature = "raw_ext", since = "1.1.0")]
72-
pub st_qspare1: int64_t,
72+
pub st_qspare1: i64,
7373
#[stable(feature = "raw_ext", since = "1.1.0")]
74-
pub st_qspare2: int64_t,
74+
pub st_qspare2: i64,
7575
}

0 commit comments

Comments
 (0)