mirror of
https://github.com/sharkdp/fd.git
synced 2026-08-29 02:32:00 +08:00
Solve clippy issues
This commit is contained in:
+2
-2
@@ -327,7 +327,7 @@ fn spawn_senders(
|
||||
.ok()
|
||||
.map_or(false, |m| m.file_type().is_symlink()) =>
|
||||
{
|
||||
DirEntry::BrokenSymlink(path.to_owned())
|
||||
DirEntry::BrokenSymlink(path)
|
||||
}
|
||||
_ => {
|
||||
tx_thread
|
||||
@@ -440,7 +440,7 @@ fn spawn_senders(
|
||||
|
||||
let send_result = tx_thread.send(WorkerResult::Entry(entry_path.to_owned()));
|
||||
|
||||
if !send_result.is_ok() {
|
||||
if send_result.is_err() {
|
||||
return ignore::WalkState::Quit;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user