diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-02-19 14:23:28 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-02-19 14:23:28 -0500 |
| commit | b81fdd4cd2b967e73ac1f3f5cfbe8229853876d9 (patch) | |
| tree | 11a7dc9c8d24acb02d8199d02f2653c8fc5af446 /src/libstd | |
| parent | 206e86b947b3fb6940615e866fbba79f26064118 (diff) | |
| parent | aeda8445a7295b7ca9e836db8c0328829cd6ee21 (diff) | |
| download | rust-b81fdd4cd2b967e73ac1f3f5cfbe8229853876d9.tar.gz rust-b81fdd4cd2b967e73ac1f3f5cfbe8229853876d9.zip | |
Rollup merge of #31737 - dhuseby:netbsd_fixes, r=alexcrichton
this fixes a small compile error when building for netbsd.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os/netbsd/raw.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/os/netbsd/raw.rs b/src/libstd/os/netbsd/raw.rs index 7eb3f6d47d1..bc30c1a7f48 100644 --- a/src/libstd/os/netbsd/raw.rs +++ b/src/libstd/os/netbsd/raw.rs @@ -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")] |
