Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-tworek committed Dec 18, 2023
1 parent 34a3787 commit 16496f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/rtp_streams_plot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 16496f8

Please sign in to comment.