Skip to content

Commit 14e8d63

Browse files
committed
fix(fs): st_ino for freebsd
1 parent 84ed6e6 commit 14e8d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compio-fs/src/metadata/unix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ impl MetadataExt for Metadata {
117117
}
118118

119119
fn ino(&self) -> u64 {
120-
self.0.st_ino
120+
self.0.st_ino as _
121121
}
122122

123123
fn mode(&self) -> u32 {

0 commit comments

Comments
 (0)