mirror of
https://github.com/uutils/findutils.git
synced 2026-06-10 15:48:30 -07:00
xargs: fix clippy::needless_continue
This commit is contained in:
+1
-1
@@ -534,7 +534,7 @@ where
|
||||
let bytes_read = loop {
|
||||
match self.rd.read(&mut pending[..]) {
|
||||
Ok(bytes_read) => break bytes_read,
|
||||
Err(e) if e.kind() == io::ErrorKind::Interrupted => continue,
|
||||
Err(e) if e.kind() == io::ErrorKind::Interrupted => {}
|
||||
Err(e) => return Err(e),
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user