mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
df: fixed clippy warning
This commit is contained in:
parent
9d554751ca
commit
72b0ba0b05
1 changed files with 2 additions and 2 deletions
|
@ -448,7 +448,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
Err(error) => {
|
||||
return Err(UIoError::new(
|
||||
error.kind(),
|
||||
format!("cannot read table of mounted file systems"),
|
||||
"cannot read table of mounted file systems",
|
||||
));
|
||||
}
|
||||
};
|
||||
|
@ -466,7 +466,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
Err(error) => {
|
||||
return Err(UIoError::new(
|
||||
error.kind(),
|
||||
format!("cannot read table of mounted file systems"),
|
||||
"cannot read table of mounted file systems",
|
||||
));
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue