From 515a06d4b81dd2a6bf62ee6119e068d5ec56d694 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 18 Apr 2024 17:44:39 -0500 Subject: [PATCH] tweak style --- Marlin/src/module/temperature.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index fc74d13259..b236a98649 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -4419,10 +4419,9 @@ void Temperature::isr() { #if ENABLED(AUTO_REPORT_TEMPERATURES) AutoReporter Temperature::auto_reporter; void Temperature::AutoReportTemp::report() { - if(!wait_for_heatup) { - print_heater_states(active_extruder OPTARG(HAS_TEMP_REDUNDANT, ENABLED(AUTO_REPORT_REDUNDANT))); - SERIAL_EOL(); - } + if (wait_for_heatup) return; + print_heater_states(active_extruder OPTARG(HAS_TEMP_REDUNDANT, ENABLED(AUTO_REPORT_REDUNDANT))); + SERIAL_EOL(); } #endif