Skip to content

Commit

Permalink
Merge pull request #1562 from saschagrunert/clippy
Browse files Browse the repository at this point in the history
Fix clippy lint
  • Loading branch information
openshift-merge-robot authored Aug 8, 2023
2 parents 076e9fd + 461d5c5 commit 74c71fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conmon-rs/server/src/container_io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl ContainerIO {

loop {
match reader.read(&mut buf).await {
Ok(n) if n == 0 => {
Ok(0) => {
debug!("Nothing more to read");

attach
Expand Down

0 comments on commit 74c71fb

Please sign in to comment.