From 52ca1e98fb94ccc50ad48d2bf1663a0663c8f4a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 11 Apr 2021 04:55:00 +1200 Subject: [PATCH] Formatting again --- src/signal.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/signal.rs b/src/signal.rs index 962b38d..307b822 100644 --- a/src/signal.rs +++ b/src/signal.rs @@ -34,8 +34,9 @@ use std::{fmt, io::Write}; #[cfg(windows)] impl fmt::Display for Signal { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!("{}", + write!( f, + "{}", match self { Self::SIGKILL => "SIGKILL", Self::SIGTERM => "SIGTERM",