Browse Source

Fix compile error in configuration_store.cpp

Scott Lahteine 9 years ago
parent
commit
2db384a21d
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/configuration_store.cpp

+ 2
- 2
Marlin/configuration_store.cpp View File

@@ -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…
Cancel
Save