Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuki0824 committed Dec 26, 2023
1 parent b4d6d9d commit fd7033b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion recisdb-rs/src/tuner/linux/dvbv5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ impl UnTunedTuner {
frontend_number: fe_number,
};

let f = match FrontendParametersPtr::new(&frontend_id, Some(if cfg!(debug_assertions) {1} else {0}), Some(false)) {
let f = match FrontendParametersPtr::new(
&frontend_id,
Some(if cfg!(debug_assertions) { 1 } else { 0 }),
Some(false),
) {
Ok(f) => f,
Err(_) => {
error!("Cannot open the device. (Something went wrong while opening DVB frontend device)");
Expand Down

0 comments on commit fd7033b

Please sign in to comment.