Fix bound for largefilewarning

The bound was `> 4GB` when it should be `≥ 4GiB`.
This commit is contained in:
Hermann Döppes 2021-09-19 01:04:13 +03:00 committed by GitHub
parent a937df99c5
commit b19eb217d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -178,7 +178,7 @@ func smudgeFilename(args []string) string {
}
func possiblyMalformedObjectSize(n int64) bool {
return n > 4*humanize.Gigabyte
return n >= 4*humanize.Gibibyte
}
func init() {