Tweak some lambdas

This commit is contained in:
Scott Lahteine
2020-03-18 10:30:19 -05:00
parent 252178fe62
commit abea6d5787
4 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@
*/
void GcodeSuite::M900() {
auto echo_value_oor = [] (const char ltr, const bool ten=true) {
auto echo_value_oor = [](const char ltr, const bool ten=true) {
SERIAL_CHAR('?'); SERIAL_CHAR(ltr);
SERIAL_ECHOPGM(" value out of range");
if (ten) SERIAL_ECHOPGM(" (0-10)");