diff --git a/Marlin/src/gcode/calibrate/G33.cpp b/Marlin/src/gcode/calibrate/G33.cpp index 656c23cb78ff..a55ec3831e33 100644 --- a/Marlin/src/gcode/calibrate/G33.cpp +++ b/Marlin/src/gcode/calibrate/G33.cpp @@ -469,7 +469,9 @@ void GcodeSuite::G33() { SERIAL_ECHOPGM(" at radius:", dcr); if (verbose_level == 0) SERIAL_ECHOPGM(" (DRY-RUN)"); SERIAL_EOL(); - ui.set_status(checkingac); + char mess[14]; + strcpy_P(mess, checkingac); + ui.set_status(mess); print_calibration_settings(_endstop_results, _angle_results);