Browse Source

Merge pull request #3187 from AnHardt/target_extruder_number

Fix extrudernum in MSG_INVALID_EXTRUDER
Scott Lahteine 8 years ago
parent
commit
10caee2b7c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -7454,7 +7454,7 @@ bool setTargetedHotend(int code) {
7454 7454
       SERIAL_CHAR('M');
7455 7455
       SERIAL_ECHO(code);
7456 7456
       SERIAL_ECHOPGM(" " MSG_INVALID_EXTRUDER " ");
7457
-      SERIAL_ECHOLN(target_extruder);
7457
+      SERIAL_ECHOLN((int)target_extruder);
7458 7458
       return true;
7459 7459
     }
7460 7460
   }

Loading…
Cancel
Save