Skip to content

Commit

Permalink
🎨 fix some code formatting
Browse files Browse the repository at this point in the history
The code was in a block that `rustfmt` was told to ignore.
  • Loading branch information
rneswold committed Oct 5, 2023
1 parent cd78435 commit ce59600
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drmemd/src/driver/drv_cycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ impl driver::API for Instance {
// set the output to the inactive value.

if let Some(v) = self.time_expired() {
debug!("state {:?} : timeout occurred -- output {}", &self.state, v);
debug!("state {:?} : timeout occurred -- output {}",
&self.state, v);
(devices.d_output)(v).await;
}
}
Expand All @@ -308,7 +309,8 @@ impl driver::API for Instance {

reply(Ok(b));

debug!("state {:?} : new input -> {}", &self.state, b);
debug!("state {:?} : new input -> {}",
&self.state, b);

(devices.d_enable)(b).await;

Expand Down

0 comments on commit ce59600

Please sign in to comment.