Fix clippy warnings (#251)

This commit is contained in:
Gnome!
2024-09-09 10:54:17 +01:00
committed by GitHub
parent 0844537024
commit 095feb1065
5 changed files with 13 additions and 11 deletions

View File

@@ -178,10 +178,10 @@ impl DriverTestHandle {
OutputPacket::Rtp(p) => eprintln!("pkt: RTP[{}B]", p.len()),
OutputPacket::Raw(OutputMessage::Silent) => eprintln!("pkt: Raw-Silent"),
OutputPacket::Raw(OutputMessage::Passthrough(p)) => {
eprintln!("pkt: Raw-Passthrough[{}B]", p.len())
eprintln!("pkt: Raw-Passthrough[{}B]", p.len());
},
OutputPacket::Raw(OutputMessage::Mixed(p)) => {
eprintln!("pkt: Raw-Mixed[{}B]", p.len())
eprintln!("pkt: Raw-Mixed[{}B]", p.len());
},
}
}