Browse Source

add missing ')'

Roxy-3D 7 years ago
parent
commit
09485f63e9
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/feature/bedlevel/bedlevel.cpp

+ 2
- 2
Marlin/src/feature/bedlevel/bedlevel.cpp View File

@@ -269,9 +269,9 @@ void reset_bed_level() {
269 269
     #ifdef MANUAL_PROBE_START_Z
270 270
       #if MANUAL_PROBE_HEIGHT > 0
271 271
         do_blocking_move_to(rx, ry, MANUAL_PROBE_HEIGHT);
272
-        do_blocking_move_to_z(MAX(0,MANUAL_PROBE_START_Z);
272
+        do_blocking_move_to_z(MAX(0,MANUAL_PROBE_START_Z));
273 273
       #else
274
-        do_blocking_move_to(rx, ry, MAX(0,MANUAL_PROBE_START_Z);
274
+        do_blocking_move_to(rx, ry, MAX(0,MANUAL_PROBE_START_Z));
275 275
       #endif
276 276
     #elif MANUAL_PROBE_HEIGHT > 0
277 277
       const float prev_z = current_position[Z_AXIS];

Loading…
Cancel
Save