From 91fe0e1022ee740262792d6a857c7226745f8c75 Mon Sep 17 00:00:00 2001 From: Gurmeet Athwal Date: Sun, 10 May 2020 10:06:04 +0530 Subject: [PATCH] Fix line ending in M360 (#17917) --- Marlin/src/gcode/host/M360.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/host/M360.cpp b/Marlin/src/gcode/host/M360.cpp index 5c00be30b4..63a0b6dfc4 100644 --- a/Marlin/src/gcode/host/M360.cpp +++ b/Marlin/src/gcode/host/M360.cpp @@ -93,7 +93,7 @@ void GcodeSuite::M360() { config_line(PSTR("SupportG10G11"), ENABLED(FWRETRACT)); #if ENABLED(FWRETRACT) PGMSTR(RET_STR, "Retraction"); - PGMSTR(UNRET_STR, "RetractionUndo"), + PGMSTR(UNRET_STR, "RetractionUndo"); PGMSTR(SPEED_STR, "Speed"); // M10 Retract with swap (long) moves config_line(PSTR("Length"), fwretract.settings.retract_length, RET_STR);