Skip to content

Commit 2921c2d

Browse files
committed
Fix signedness of blksize_t for DragonFly
1 parent 65e817b commit 2921c2d

File tree

1 file changed

+1
-1
lines changed
  • src/unix/bsd/freebsdlike/dragonfly

1 file changed

+1
-1
lines changed

src/unix/bsd/freebsdlike/dragonfly/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cfg_if! {
1010
pub type clock_t = u64;
1111
pub type ino_t = u64;
1212
pub type nlink_t = u32;
13-
pub type blksize_t = u64;
13+
pub type blksize_t = i64;
1414

1515
s! {
1616
pub struct dirent {

0 commit comments

Comments
 (0)