Skip to content

Commit d732678

Browse files
committed
change type size to match openbsd C
1 parent c5eadb3 commit d732678

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/bsd/openbsdlike/openbsd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ pub type suseconds_t = i64;
33
pub type dev_t = i32;
44
pub type sigset_t = ::c_uint;
55
pub type blksize_t = ::uint32_t;
6-
pub type fsblkcnt_t = ::c_uint;
7-
pub type fsfilcnt_t = ::c_uint;
6+
pub type fsblkcnt_t = ::uint64_t;
7+
pub type fsfilcnt_t = ::uint64_t;
88
pub type pthread_attr_t = *mut ::c_void;
99
pub type pthread_mutex_t = *mut ::c_void;
1010
pub type pthread_mutexattr_t = *mut ::c_void;

0 commit comments

Comments
 (0)