소스 검색

Fix compile error in configuration_store.cpp

Scott Lahteine 9 년 전
부모
커밋
2db384a21d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/configuration_store.cpp 파일 보기

@@ -677,8 +677,8 @@ void Config_PrintSettings(bool forReplay) {
677 677
       CONFIG_ECHO_START;
678 678
     }
679 679
     SERIAL_ECHOPAIR("  M420 S", (unsigned long)mbl.active);
680
-    SERIAL_ECHOPAIR(" X", MESH_NUM_X_POINTS);
681
-    SERIAL_ECHOPAIR(" Y", MESH_NUM_Y_POINTS);
680
+    SERIAL_ECHOPAIR(" X", (unsigned long)MESH_NUM_X_POINTS);
681
+    SERIAL_ECHOPAIR(" Y", (unsigned long)MESH_NUM_Y_POINTS);
682 682
     SERIAL_EOL;
683 683
     for (int y=0; y<MESH_NUM_Y_POINTS; y++) {
684 684
       for (int x=0; x<MESH_NUM_X_POINTS; x++) {

Loading…
취소
저장