< like in the oher compareble loops

to avoid:
Marlin_main.cpp:1790: warning: array subscript is above array bounds.
This commit is contained in:
AnHardt 2015-03-26 21:18:19 +01:00
parent 9e8427f253
commit ebe5b87c2c

View file

@ -1787,7 +1787,7 @@ inline void gcode_G28() {
enable_endstops(true);
for (int i = X_AXIS; i <= NUM_AXIS; i++) destination[i] = current_position[i];
for (int i = X_AXIS; i < NUM_AXIS; i++) destination[i] = current_position[i];
feedrate = 0.0;