Formatting again

This commit is contained in:
Félix Saparelli 2021-04-11 04:55:00 +12:00
parent d37261529c
commit 52ca1e98fb
1 changed files with 2 additions and 1 deletions

View File

@ -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",