From 16496f83a0773844c7b59859b0849c4805172ae9 Mon Sep 17 00:00:00 2001 From: damian-tworek Date: Tue, 19 Dec 2023 00:58:42 +0100 Subject: [PATCH] clippy --- client/src/app/rtp_streams_plot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/rtp_streams_plot.rs b/client/src/app/rtp_streams_plot.rs index 5dc19cf..893ab81 100644 --- a/client/src/app/rtp_streams_plot.rs +++ b/client/src/app/rtp_streams_plot.rs @@ -564,7 +564,7 @@ fn build_stream_points( fn build_reception_report(on_hover: &mut String, report: &&ReceptionReport) { on_hover.push_str(&"-".repeat(160)); - on_hover.push_str("\n"); + on_hover.push('\n'); on_hover.push_str(&format!("SSRC: {:x}\t", report.ssrc)); on_hover.push_str(&format!("Fraction lost: {}\t", report.fraction_lost)); on_hover.push_str(&format!("Cumulative lost: {}\t", report.total_lost));