Browse Source

Fix gcode_line_error call

Followup to 3007eee
Scott Lahteine 7 years ago
parent
commit
7b8bb2519e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/queue.cpp

+ 1
- 1
Marlin/src/gcode/queue.cpp View File

@@ -343,7 +343,7 @@ inline void get_serial_commands() {
343 343
         }
344 344
         #if ENABLED(SDSUPPORT)
345 345
           else if (card.saving) {
346
-            gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
346
+            gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i);
347 347
             return;
348 348
           }
349 349
         #endif

Loading…
Cancel
Save