Explorar el Código

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

AnHardt hace 9 años
padre
commit
6a6e863a47
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/stepper.cpp

+ 1
- 1
Marlin/stepper.cpp Ver fichero

@@ -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…
Cancelar
Guardar