Преглед изворни кода

Fix compile error in configuration_store.cpp

Scott Lahteine пре 10 година
родитељ
комит
2db384a21d
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2
    2
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/configuration_store.cpp Прегледај датотеку

677
       CONFIG_ECHO_START;
677
       CONFIG_ECHO_START;
678
     }
678
     }
679
     SERIAL_ECHOPAIR("  M420 S", (unsigned long)mbl.active);
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
     SERIAL_EOL;
682
     SERIAL_EOL;
683
     for (int y=0; y<MESH_NUM_Y_POINTS; y++) {
683
     for (int y=0; y<MESH_NUM_Y_POINTS; y++) {
684
       for (int x=0; x<MESH_NUM_X_POINTS; x++) {
684
       for (int x=0; x<MESH_NUM_X_POINTS; x++) {

Loading…
Откажи
Сачувај