Browse Source

Change from kill() to kill(const char *)

in temperature.cpp
AnHardt 10 years ago
parent
commit
cb6e82dc60
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp View File

@@ -723,7 +723,7 @@ static float analog2temp(int raw, uint8_t e) {
723 723
       SERIAL_ERROR_START;
724 724
       SERIAL_ERROR((int)e);
725 725
       SERIAL_ERRORLNPGM(MSG_INVALID_EXTRUDER_NUM);
726
-      kill();
726
+      kill(PSTR(MSG_KILLED));
727 727
       return 0.0;
728 728
     } 
729 729
 

Loading…
Cancel
Save