From 5fbe5cabc83b8eea3fa0ed97b1640979e82bf35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Morav=C4=8D=C3=ADk?= Date: Mon, 19 Nov 2018 01:05:29 +0100 Subject: [PATCH] Fixed displaying of kill MSG_OUTAGE_RECOVERY string. (#12470) --- Marlin/src/feature/power_loss_recovery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/feature/power_loss_recovery.cpp b/Marlin/src/feature/power_loss_recovery.cpp index 15a1557ebc..5093e09f40 100644 --- a/Marlin/src/feature/power_loss_recovery.cpp +++ b/Marlin/src/feature/power_loss_recovery.cpp @@ -197,7 +197,7 @@ void PrintJobRecovery::save(const bool force/*=false*/) { // KILL now if the power-loss pin was triggered #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 } }