From da11a93549335e555692ddd7624937d4b19d24ba Mon Sep 17 00:00:00 2001 From: Alexis Asseman Date: Thu, 2 Nov 2023 14:51:02 -0700 Subject: [PATCH] style: fix spaces in macro call Signed-off-by: Alexis Asseman --- tap-agent/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tap-agent/src/main.rs b/tap-agent/src/main.rs index df4d3be2..68f34e88 100644 --- a/tap-agent/src/main.rs +++ b/tap-agent/src/main.rs @@ -31,8 +31,8 @@ async fn main() -> Result<()> { let mut signal_sigint = signal(SignalKind::interrupt())?; let mut signal_sigterm = signal(SignalKind::terminate())?; tokio::select! { - _ = signal_sigint.recv() => debug !("Received SIGINT."), - _ = signal_sigterm.recv() => debug !("Received SIGTERM."), + _ = signal_sigint.recv() => debug!("Received SIGINT."), + _ = signal_sigterm.recv() => debug!("Received SIGTERM."), } // If we're here, we've received a signal to exit.