Skip to content

Commit

Permalink
🩹 Fix a serial_ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead authored and Andy-Big committed Jul 10, 2023
1 parent f362ea7 commit 3ccb1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/feature/bedlevel/ubl/ubl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void unified_bed_leveling::report_current_mesh() {

void unified_bed_leveling::report_state() {
echo_name();
serial_ternary(planner.leveling_active, " System v" UBL_VERSION " ", nullptr, "in", "active\n");
serial_ternary(planner.leveling_active, F(" System v" UBL_VERSION " "), nullptr, F("in"), F("active\n"));
serial_delay(50);
}

Expand Down

0 comments on commit 3ccb1a9

Please sign in to comment.