Browse Source

Fix spacing in some conditional blocks

Scott Lahteine 9 years ago
parent
commit
962120d1d2
1 changed files with 10 additions and 9 deletions
  1. 10
    9
      Marlin/Marlin_main.cpp

+ 10
- 9
Marlin/Marlin_main.cpp View File

@@ -1265,9 +1265,9 @@ static void setup_for_endstop_move() {
1265 1265
       long start_steps = st_get_position(Z_AXIS);
1266 1266
 
1267 1267
       #if ENABLED(DEBUG_LEVELING_FEATURE)
1268
-      if (marlin_debug_flags & DEBUG_LEVELING) {
1269
-        SERIAL_ECHOLNPGM("run_z_probe (DELTA) 1");
1270
-      }
1268
+        if (marlin_debug_flags & DEBUG_LEVELING) {
1269
+          SERIAL_ECHOLNPGM("run_z_probe (DELTA) 1");
1270
+        }
1271 1271
       #endif
1272 1272
 
1273 1273
       // move down slowly until you find the bed
@@ -4009,12 +4009,13 @@ inline void gcode_M111() {
4009 4009
     SERIAL_ECHOLNPGM(MSG_DEBUG_DRYRUN);
4010 4010
     disable_all_heaters();
4011 4011
   }
4012
-#if ENABLED(DEBUG_LEVELING_FEATURE)
4013
-  if (marlin_debug_flags & DEBUG_LEVELING) {
4014
-    SERIAL_ECHO_START;
4015
-    SERIAL_ECHOLNPGM(MSG_DEBUG_LEVELING);
4016
-  }
4017
-#endif
4012
+
4013
+  #if ENABLED(DEBUG_LEVELING_FEATURE)
4014
+    if (marlin_debug_flags & DEBUG_LEVELING) {
4015
+      SERIAL_ECHO_START;
4016
+      SERIAL_ECHOLNPGM(MSG_DEBUG_LEVELING);
4017
+    }
4018
+  #endif
4018 4019
 }
4019 4020
 
4020 4021
 /**

Loading…
Cancel
Save