1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00
This commit is contained in:
Sylvestre Ledru 2023-03-26 21:51:04 +02:00 committed by GitHub
parent d277603bf1
commit 4695c2a204
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -914,7 +914,7 @@ impl FromStr for Threshold {
if s.starts_with('-') {
// Threshold of '-0' excludes everything besides 0 sized entries
// GNU's du threats '-0' as an invalid argument
// GNU's du treats '-0' as an invalid argument
if size == 0 {
return Err(ParseSizeError::ParseFailure(s.to_string()));
}