mirror of
https://github.com/minio/minio.git
synced 2025-11-09 13:39:46 -05:00
Fix portability issues for arm on raspberry pi
This commit is contained in:
@@ -46,7 +46,7 @@ func getFSType(path string) (string, error) {
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
fsTypeHex := strconv.FormatInt(s.Type, 16)
|
||||
fsTypeHex := strconv.FormatInt(int64(s.Type), 16)
|
||||
fsTypeString, ok := fsType2StringMap[fsTypeHex]
|
||||
if ok == false {
|
||||
return "UNKNOWN", nil
|
||||
|
||||
Reference in New Issue
Block a user