Browse Source

Add a semicolon to make Z_DUAL_STEPPER_DRIVERS compile again.

AnHardt 9 years ago
parent
commit
0d9d21d15f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/stepper.cpp

+ 1
- 1
Marlin/stepper.cpp View File

@@ -558,7 +558,7 @@ ISR(TIMER1_COMPA_vect) {
558 558
               #if HAS_Z2_MIN
559 559
                 SET_ENDSTOP_BIT(Z2, MIN);
560 560
               #else
561
-                COPY_BIT(current_endstop_bits, Z_MIN, Z2_MIN)
561
+                COPY_BIT(current_endstop_bits, Z_MIN, Z2_MIN);
562 562
               #endif
563 563
 
564 564
             byte z_test = TEST_ENDSTOP(Z_MIN) << 0 + TEST_ENDSTOP(Z2_MIN) << 1; // bit 0 for Z, bit 1 for Z2

Loading…
Cancel
Save