Skip to content

Commit

Permalink
Fix M115_GEOMETRY_REPORT extra commas (MarlinFirmware#17933)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjasonsmith authored and HairingX committed Jun 16, 2021
1 parent b55cfad commit a6ba84d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/gcode/host/M115.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ void GcodeSuite::M115() {
"area:{"
"full:{"
"min:{x:", lmin.x, ",y:", lmin.y, ",z:", lmin.z, "},"
"max:{x:", lmax.x, ",y:", lmax.y, ",z:", lmax.z, "},"
"max:{x:", lmax.x, ",y:", lmax.y, ",z:", lmax.z, "}"
"},"
"work:{"
"min:{x:", wmin.x, ",y:", wmin.y, ",z:", wmin.z, "},"
"max:{x:", wmax.x, ",y:", wmax.y, ",z:", wmax.z, "},"
"max:{x:", wmax.x, ",y:", wmax.y, ",z:", wmax.z, "}",
"}"
"}"
);
Expand Down

0 comments on commit a6ba84d

Please sign in to comment.