mirror of
https://github.com/uutils/coreutils
synced 2025-01-21 01:24:40 +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)
|
canonicalize(&p, can_mode, res_mode)
|
||||||
};
|
};
|
||||||
match path_result {
|
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) => {
|
Err(err) => {
|
||||||
if verbose {
|
if verbose {
|
||||||
return Err(USimpleError::new(
|
return Err(USimpleError::new(
|
||||||
|
|
Loading…
Reference in a new issue