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

This commit is contained in:
AnHardt 2015-08-10 19:19:41 +02:00 committed by Richard Wackerbarth
parent e09ff79635
commit 6a6e863a47

View File

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