Fixed displaying of kill MSG_OUTAGE_RECOVERY string. (#12470)
This commit is contained in:
parent
4ae9a06c60
commit
5fbe5cabc8
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ void PrintJobRecovery::save(const bool force/*=false*/) {
|
||||||
|
|
||||||
// KILL now if the power-loss pin was triggered
|
// KILL now if the power-loss pin was triggered
|
||||||
#if PIN_EXISTS(POWER_LOSS)
|
#if PIN_EXISTS(POWER_LOSS)
|
||||||
if (READ(POWER_LOSS_PIN) == POWER_LOSS_STATE) kill(MSG_OUTAGE_RECOVERY);
|
if (READ(POWER_LOSS_PIN) == POWER_LOSS_STATE) kill(PSTR(MSG_OUTAGE_RECOVERY));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue