Skip to content

Commit 0167142

Browse files
rferrazzdennwc
authored andcommitted
fix fs type detection on 32 bit platforms
1 parent a1f570b commit 0167142

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

btrfs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/dennwc/ioctl"
1212
)
1313

14-
const SuperMagic = 0x9123683E
14+
const SuperMagic uint32 = 0x9123683E
1515

1616
func CloneFile(dst, src *os.File) error {
1717
return iocClone(dst, src)

utils.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ func isBtrfs(path string) (bool, error) {
1717
if err := syscall.Statfs(path, &stfs); err != nil {
1818
return false, &os.PathError{Op: "statfs", Path: path, Err: err}
1919
}
20-
return int64(stfs.Type) == SuperMagic, nil
20+
fsType := uint32(stfs.Type)
21+
return fsType == SuperMagic, nil
2122
}
2223

2324
func findMountRoot(path string) (string, error) {

0 commit comments

Comments
 (0)