From 8853a4c4435cd9ff282b98b4fe7c8dff15d9a7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 29 Mar 2023 13:52:53 +0200 Subject: [PATCH] rustfmt --- common/task/src/manager.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/task/src/manager.rs b/common/task/src/manager.rs index bc35ee0f8b..f8b2f2088c 100644 --- a/common/task/src/manager.rs +++ b/common/task/src/manager.rs @@ -374,7 +374,9 @@ impl Drop for TaskClient { log::trace!("Notifying stop on unexpected drop"); // If we can't send, well then there is not much to do self.drop_error - .send(Box::new(TaskError::UnexpectedHalt(self.type_name().to_string()))) + .send(Box::new(TaskError::UnexpectedHalt( + self.type_name().to_string(), + ))) .ok(); } }