From 6d94bbf6186baa87fecc40b6d131c8d489c69e73 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 30 Dec 2017 04:03:17 -0600 Subject: [PATCH] Apply some PGM_P pointers --- Marlin/src/gcode/calibrate/G33.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/gcode/calibrate/G33.cpp b/Marlin/src/gcode/calibrate/G33.cpp index b8834efda8..ddd74a4721 100644 --- a/Marlin/src/gcode/calibrate/G33.cpp +++ b/Marlin/src/gcode/calibrate/G33.cpp @@ -491,7 +491,7 @@ void GcodeSuite::G33() { // Report settings - const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string + PGM_P checkingac = PSTR("Checking... AC"); // TODO: Make translatable string serialprintPGM(checkingac); if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)"); SERIAL_EOL(); @@ -673,7 +673,7 @@ void GcodeSuite::G33() { } } else { // dry run - const char *enddryrun = PSTR("End DRY-RUN"); + PGM_P enddryrun = PSTR("End DRY-RUN"); serialprintPGM(enddryrun); SERIAL_PROTOCOL_SP(35); SERIAL_PROTOCOLPGM("std dev:");