Skip to content

Commit

Permalink
fix extraneous paren
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndere1 committed Apr 2, 2022
1 parent 6fc611a commit 08a37ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/host/M114.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 08a37ba

Please sign in to comment.