From 201baa3513c7d0f5a02b217fc36616d0bcd5ff4b Mon Sep 17 00:00:00 2001 From: andrethomas2 <43345003+andrethomas2@users.noreply.github.com> Date: Tue, 18 Dec 2018 21:14:55 +0200 Subject: [PATCH] Add void to functions without parameters --- sonoff/xsns_38_az7798.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sonoff/xsns_38_az7798.ino b/sonoff/xsns_38_az7798.ino index a31465655..8052b304f 100644 --- a/sonoff/xsns_38_az7798.ino +++ b/sonoff/xsns_38_az7798.ino @@ -134,7 +134,7 @@ uint8_t az_state = 0; /*********************************************************************************************/ -void AzEverySecond() +void AzEverySecond(void) { az_state++; if (5 == az_state) { // every 5 seconds @@ -242,7 +242,7 @@ void AzEverySecond() /*********************************************************************************************/ -void AzInit() +void AzInit(void) { az_type = 0; if ((pin[GPIO_AZ_RXD] < 99) && (pin[GPIO_AZ_TXD] < 99)) {