[CHORE] Fix darwin compatibility

- Always convert (syscall.Stat_t).Dev to uint64.
- Resolves #4905
This commit is contained in:
Gusted 2024-08-09 17:32:40 +02:00
parent d5ba61a104
commit ac8856ac2b
No known key found for this signature in database
GPG key ID: FD821B732837125F

View file

@ -39,7 +39,9 @@ func fileStatDevIno(file *os.File) (uint64, uint64, bool) {
return 0, 0, false
}
return stat.Dev, stat.Ino, true
// Do a type conversion to uint64, because Dev isn't always uint64
// on every operating system + architecture combination.
return uint64(stat.Dev), stat.Ino, true //nolint:unconvert
}
func fileIsDevIno(file *os.File, dev, ino uint64) bool {