Marlin
Marlin copied to clipboard
Update marlinui.h/cpp to match args
Description
A couple functions do not have their arguments matching. This updates them to be alike.
ex.
- void MarlinUI::_set_status(const char * const cstr, const bool, const bool pgm) {
- host_notify(cstr);
}
+ void MarlinUI::_set_status(const char * const ustr, const bool, const bool pgm) {
+ host_notify(ustr);
}