Drop C-style 'void' argument

This commit is contained in:
Scott Lahteine
2019-09-16 20:31:08 -05:00
parent 7d8c38693f
commit f01f0d1956
174 changed files with 864 additions and 864 deletions

View File

@ -31,7 +31,7 @@
#include "tempstat.h"
#include "../../module/temperature.h"
void handle_status_leds(void) {
void handle_status_leds() {
static int8_t old_red = -1; // Invalid value to force LED initialization
static millis_t next_status_led_update_ms = 0;
if (ELAPSED(millis(), next_status_led_update_ms)) {

View File

@ -25,4 +25,4 @@
* Marlin general RGB LED support
*/
void handle_status_leds(void);
void handle_status_leds();