Skip to content

Commit

Permalink
chore: Clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IshanGrover2004 committed Aug 24, 2024
1 parent f5afb88 commit 3901259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/src/decoder/service_decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ impl dtvcc_service_decoder {
pub extern "C" fn ccxr_flush_decoder(dtvcc_rust: *mut Dtvcc, decoder: *mut dtvcc_service_decoder) {
debug!("dtvcc_decoder_flush: Flushing decoder");
let timing = unsafe { &mut *((*dtvcc_rust).timing) };
let encoder = unsafe { &mut *((*dtvcc_rust).encoder as *mut encoder_ctx) };
let encoder = unsafe { &mut *((*dtvcc_rust).encoder) };
let decoder = unsafe { &mut *decoder };

let mut screen_content_changed = false;
Expand Down

0 comments on commit 3901259

Please sign in to comment.