From 78d6b7ddcffa405f9a62366bfa984c658cd79f79 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 5 Aug 2024 19:37:55 +0800 Subject: [PATCH] cargo fmt --- src/runtime/src/comms.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runtime/src/comms.rs b/src/runtime/src/comms.rs index e7c8a14..0e21c98 100644 --- a/src/runtime/src/comms.rs +++ b/src/runtime/src/comms.rs @@ -705,14 +705,15 @@ async fn load_and_run_idle_kernel( timer: GlobalTimer, ) { info!("Loading idle kernel"); - let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer).await; + let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer).await; match res { Err(_) => warn!("error loading idle kernel"), _ => (), } info!("Running idle kernel"); let _ = handle_run_kernel(None, control, up_destinations, aux_mutex, routing_table, timer) - .await.map_err(|_| warn!("error running idle kernel")); + .await + .map_err(|_| warn!("error running idle kernel")); info!("Idle kernel terminated"); }