Skip to content

Commit b81fdd4

Browse files
committed
Rollup merge of #31737 - dhuseby:netbsd_fixes, r=alexcrichton
this fixes a small compile error when building for netbsd.
2 parents 206e86b + aeda844 commit b81fdd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/os/netbsd/raw.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ pub struct stat {
4646
#[stable(feature = "raw_ext", since = "1.1.0")]
4747
pub st_nlink: u32,
4848
#[stable(feature = "raw_ext", since = "1.1.0")]
49-
pub st_uid: u32,
49+
pub st_uid: uid_t,
5050
#[stable(feature = "raw_ext", since = "1.1.0")]
51-
pub st_gid: u32,
51+
pub st_gid: gid_t,
5252
#[stable(feature = "raw_ext", since = "1.1.0")]
5353
pub st_rdev: u64,
5454
#[stable(feature = "raw_ext", since = "1.1.0")]

0 commit comments

Comments
 (0)