add missing ')'

This commit is contained in:
Roxy-3D 2018-07-22 10:50:41 -05:00 committed by GitHub
parent a35abce1ac
commit 09485f63e9
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

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