Skip to content

Commit

Permalink
fixes a small netbsd compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Huseby committed Feb 17, 2016
1 parent b54770c commit aeda844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/os/netbsd/raw.rs
Expand Up @@ -46,9 +46,9 @@ pub struct stat {
#[stable(feature = "raw_ext", since = "1.1.0")]
pub st_nlink: u32,
#[stable(feature = "raw_ext", since = "1.1.0")]
pub st_uid: u32,
pub st_uid: uid_t,
#[stable(feature = "raw_ext", since = "1.1.0")]
pub st_gid: u32,
pub st_gid: gid_t,
#[stable(feature = "raw_ext", since = "1.1.0")]
pub st_rdev: u64,
#[stable(feature = "raw_ext", since = "1.1.0")]
Expand Down

0 comments on commit aeda844

Please sign in to comment.