Skip to content

Commit 4389f35

Browse files
committed
style: fix spaces in macro call
Signed-off-by: Alexis Asseman <alexis@semiotic.ai>
1 parent 33782e9 commit 4389f35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap-agent/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ async fn main() -> Result<()> {
3131
let mut signal_sigint = signal(SignalKind::interrupt())?;
3232
let mut signal_sigterm = signal(SignalKind::terminate())?;
3333
tokio::select! {
34-
_ = signal_sigint.recv() => debug !("Received SIGINT."),
35-
_ = signal_sigterm.recv() => debug !("Received SIGTERM."),
34+
_ = signal_sigint.recv() => debug!("Received SIGINT."),
35+
_ = signal_sigterm.recv() => debug!("Received SIGTERM."),
3636
}
3737

3838
// If we're here, we've received a signal to exit.

0 commit comments

Comments
 (0)