Browse Source

Resolve #2581 by adding a missed ';' (PR#67)

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

+ 1
- 1
Marlin/stepper.cpp View File

@@ -430,7 +430,7 @@ inline void update_endstops() {
430 430
               #if HAS_Z2_MAX
431 431
                 SET_ENDSTOP_BIT(Z2, MAX);
432 432
               #else
433
-                COPY_BIT(current_endstop_bits, Z_MAX, Z2_MAX)
433
+                COPY_BIT(current_endstop_bits, Z_MAX, Z2_MAX);
434 434
               #endif
435 435
 
436 436
             byte z_test = TEST_ENDSTOP(Z_MAX) << 0 + TEST_ENDSTOP(Z2_MAX) << 1; // bit 0 for Z, bit 1 for Z2

Loading…
Cancel
Save