mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
readlink: reformat using rustfmt
This commit is contained in:
parent
5d4ad4de13
commit
9c97b700ec
1 changed files with 3 additions and 1 deletions
|
@ -79,7 +79,9 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
canonicalize(&p, can_mode, res_mode)
|
||||
};
|
||||
match path_result {
|
||||
Ok(path) => show(&path, no_trailing_delimiter, use_zero).map_err_context(String::new)?,
|
||||
Ok(path) => {
|
||||
show(&path, no_trailing_delimiter, use_zero).map_err_context(String::new)?
|
||||
}
|
||||
Err(err) => {
|
||||
if verbose {
|
||||
return Err(USimpleError::new(
|
||||
|
|
Loading…
Reference in a new issue