소스 검색

Apply some PGM_P pointers

Scott Lahteine 6 년 전
부모
커밋
6d94bbf618
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/src/gcode/calibrate/G33.cpp

+ 2
- 2
Marlin/src/gcode/calibrate/G33.cpp 파일 보기

@@ -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…
취소
저장