Skip to content

Commit

Permalink
Fix compile on DragonFly: Replace unknown uint32_t/in64_t by u32/i64.
Browse files Browse the repository at this point in the history
  • Loading branch information
mneumann committed Sep 2, 2015
1 parent 0dbbab9 commit 52e7f55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/libstd/os/dragonfly/raw.rs
Expand Up @@ -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,
}

0 comments on commit 52e7f55

Please sign in to comment.