From 962120d1d23b6847e87c6160d69dde570f68e070 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 27 Aug 2015 18:40:10 -0700 Subject: [PATCH] Fix spacing in some conditional blocks --- Marlin/Marlin_main.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 4439d4d1d..413880387 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -1265,9 +1265,9 @@ static void setup_for_endstop_move() { long start_steps = st_get_position(Z_AXIS); #if ENABLED(DEBUG_LEVELING_FEATURE) - if (marlin_debug_flags & DEBUG_LEVELING) { - SERIAL_ECHOLNPGM("run_z_probe (DELTA) 1"); - } + if (marlin_debug_flags & DEBUG_LEVELING) { + SERIAL_ECHOLNPGM("run_z_probe (DELTA) 1"); + } #endif // move down slowly until you find the bed @@ -4009,12 +4009,13 @@ inline void gcode_M111() { SERIAL_ECHOLNPGM(MSG_DEBUG_DRYRUN); disable_all_heaters(); } -#if ENABLED(DEBUG_LEVELING_FEATURE) - if (marlin_debug_flags & DEBUG_LEVELING) { - SERIAL_ECHO_START; - SERIAL_ECHOLNPGM(MSG_DEBUG_LEVELING); - } -#endif + + #if ENABLED(DEBUG_LEVELING_FEATURE) + if (marlin_debug_flags & DEBUG_LEVELING) { + SERIAL_ECHO_START; + SERIAL_ECHOLNPGM(MSG_DEBUG_LEVELING); + } + #endif } /**