mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
readlink: follow clippy advice, add semicolon
This commit is contained in:
parent
9c97b700ec
commit
0db17196ca
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
||||||
};
|
};
|
||||||
match path_result {
|
match path_result {
|
||||||
Ok(path) => {
|
Ok(path) => {
|
||||||
show(&path, no_trailing_delimiter, use_zero).map_err_context(String::new)?
|
show(&path, no_trailing_delimiter, use_zero).map_err_context(String::new)?;
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
if verbose {
|
if verbose {
|
||||||
|
|
Loading…
Reference in a new issue