fix(错误返回): 优化错误返回
/ build (push) Successful in 13s

This commit is contained in:
2026-02-28 23:13:44 +08:00
parent eeff36d167
commit e174d81262
+1 -1
View File
@@ -43,7 +43,7 @@ func errno(err error) int {
if sysErr, ok := err.(syscall.Errno); ok {
return -int(sysErr)
}
return -int(fuse.ENOENT)
return -int(fuse.EIO)
}
// Init 初始化文件系统