MarlinFirmware / Marlin

Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine.
https://marlinfw.org
GNU General Public License v3.0
15.94k stars 19.08k forks source link

Update marlinui.h/cpp to match args #27046

Open classicrocker883 opened 2 weeks ago

classicrocker883 commented 2 weeks ago

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);
  }

Requirements

Benefits

Configurations

Related Issues