Skip to content

Commit 14efd35

Browse files
authored
Merge pull request #4509 from Gelbpunkt/musl-misp64-nlink
musl: mips64: Fix type of nlink_t
2 parents 59b7fec + 02eff0f commit 14efd35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/linux_like/linux/musl/b64/mips64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::prelude::*;
44
pub type wchar_t = i32;
55
pub type __u64 = c_ulong;
66
pub type __s64 = c_long;
7-
pub type nlink_t = u64;
7+
pub type nlink_t = c_uint;
88
pub type blksize_t = i64;
99

1010
s! {

0 commit comments

Comments
 (0)