From 0d9d21d15f4edde38731136823040d2276838307 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Mon, 1 Jun 2015 19:51:43 +0200 Subject: [PATCH] Add a semicolon to make Z_DUAL_STEPPER_DRIVERS compile again. --- Marlin/stepper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/stepper.cpp b/Marlin/stepper.cpp index 32d2c9e2c..ace0615b3 100644 --- a/Marlin/stepper.cpp +++ b/Marlin/stepper.cpp @@ -558,7 +558,7 @@ ISR(TIMER1_COMPA_vect) { #if HAS_Z2_MIN SET_ENDSTOP_BIT(Z2, MIN); #else - COPY_BIT(current_endstop_bits, Z_MIN, Z2_MIN) + COPY_BIT(current_endstop_bits, Z_MIN, Z2_MIN); #endif byte z_test = TEST_ENDSTOP(Z_MIN) << 0 + TEST_ENDSTOP(Z2_MIN) << 1; // bit 0 for Z, bit 1 for Z2