From 08a37ba20425ecb6de7feb16c87107e7640d30a1 Mon Sep 17 00:00:00 2001 From: DerAndere <26200979+DerAndere1@users.noreply.github.com> Date: Sat, 2 Apr 2022 04:33:43 +0200 Subject: [PATCH] fix extraneous paren --- Marlin/src/gcode/host/M114.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/host/M114.cpp b/Marlin/src/gcode/host/M114.cpp index 05af5d3a65a5a..306ecb2a6f0ac 100644 --- a/Marlin/src/gcode/host/M114.cpp +++ b/Marlin/src/gcode/host/M114.cpp @@ -169,7 +169,7 @@ SERIAL_ECHOPGM("Stepper:"); LOOP_LOGICAL_AXES(i) { - SERIAL_ECHOPGM_P(SP_AXIS_LBL[i]), stepper.position((AxisEnum)i)); + SERIAL_ECHOPGM_P(SP_AXIS_LBL[i], stepper.position((AxisEnum)i)); } SERIAL_EOL();