parent
1a56a0e0b9
commit
bd785ede15
1 changed files with 2 additions and 1 deletions
|
@ -103,7 +103,8 @@ func GetFSType(path string) (string, error) {
|
|||
return "", err
|
||||
}
|
||||
|
||||
fsType, ok := fsTypeMapping[buf.Type]
|
||||
fsType, ok := fsTypeMapping[int64(buf.Type)] //nolint:unconvert
|
||||
|
||||
if !ok {
|
||||
return "", fmt.Errorf("unknown fstype %d", buf.Type)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue