Skip to content

Commit

Permalink
One more clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
avsaase committed Feb 11, 2024
1 parent 9d198bb commit 41f92ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/ffmpeg/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn start_video_render(
.spawn(move || {
tracing::info_span!("Decoder handler thread").in_scope(|| {
frame_overlay_iter.for_each(|f| {
encoder_stdin.write(&f.data).ok();
encoder_stdin.write_all(&f.data).ok();
});
});
})
Expand Down

0 comments on commit 41f92ec

Please sign in to comment.