Browse Source

Fix a compile warning (#12452)

Giuliano Zaro 6 years ago
parent
commit
43ecdb606f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/bedlevel/G26.cpp

+ 1
- 1
Marlin/src/gcode/bedlevel/G26.cpp View File

@@ -824,7 +824,7 @@ void GcodeSuite::G26() {
824 824
           SERIAL_ECHOPAIR(" plan_arc(ex=", endpoint[X_AXIS]);
825 825
           SERIAL_ECHOPAIR(", ey=", endpoint[Y_AXIS]);
826 826
           SERIAL_ECHOPAIR(", ez=", endpoint[Z_AXIS]);
827
-          SERIAL_ECHOPAIR(", len=", arc_offset);
827
+          SERIAL_ECHOPAIR(", len=", arc_length);
828 828
           SERIAL_ECHOPAIR(") -> (ex=", current_position[X_AXIS]);
829 829
           SERIAL_ECHOPAIR(", ey=", current_position[Y_AXIS]);
830 830
           SERIAL_ECHOPAIR(", ez=", current_position[Z_AXIS]);

Loading…
Cancel
Save