From 7b8bb2519e2e13f17267f0d5381380345d27ed08 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 28 Mar 2018 20:29:27 -0500 Subject: [PATCH] Fix gcode_line_error call Followup to 3007eee --- Marlin/src/gcode/queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/queue.cpp b/Marlin/src/gcode/queue.cpp index 727b45ca39..1e7717ed1c 100644 --- a/Marlin/src/gcode/queue.cpp +++ b/Marlin/src/gcode/queue.cpp @@ -343,7 +343,7 @@ inline void get_serial_commands() { } #if ENABLED(SDSUPPORT) else if (card.saving) { - gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM)); + gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i); return; } #endif