tackle some minor clippy lints in ptyd and its dependencies

This commit is contained in:
auronandace
2026-06-17 10:41:06 +01:00
parent dab7d039e2
commit 997155ef2c
5 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ impl<'sock> Blocking<'sock> {
}) => {
panic!("scheme response writing should always block");
}
Err(err) => return Err(LError::from(err).into()),
Err(err) => Err(LError::from(err).into()),
}
}