Browse Source

Apply some PGM_P pointers

Scott Lahteine 6 years ago
parent
commit
6d94bbf618
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp View File

@@ -491,7 +491,7 @@ void GcodeSuite::G33() {
491 491
 
492 492
   // Report settings
493 493
 
494
-  const char *checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
494
+  PGM_P checkingac = PSTR("Checking... AC"); // TODO: Make translatable string
495 495
   serialprintPGM(checkingac);
496 496
   if (verbose_level == 0) SERIAL_PROTOCOLPGM(" (DRY-RUN)");
497 497
   SERIAL_EOL();
@@ -673,7 +673,7 @@ void GcodeSuite::G33() {
673 673
       }
674 674
     }
675 675
     else {                                                       // dry run
676
-      const char *enddryrun = PSTR("End DRY-RUN");
676
+      PGM_P enddryrun = PSTR("End DRY-RUN");
677 677
       serialprintPGM(enddryrun);
678 678
       SERIAL_PROTOCOL_SP(35);
679 679
       SERIAL_PROTOCOLPGM("std dev:");

Loading…
Cancel
Save