Fix misplaced semi-colons

This commit is contained in:
fvanroie 2022-12-26 21:51:09 +01:00
parent 56aba9b986
commit 64e6b13a4f

View File

@ -78,19 +78,19 @@ bool mqttSetConfig(const JsonObject& settings);
#ifndef MQTT_HOSTNAME #ifndef MQTT_HOSTNAME
#ifndef MQTT_HOST #ifndef MQTT_HOST
#define MQTT_HOSTNAME ""; #define MQTT_HOSTNAME ""
#else #else
#define MQTT_HOSTNAME MQTT_HOST; #define MQTT_HOSTNAME MQTT_HOST
#endif #endif
#endif #endif
#ifndef MQTT_PORT #ifndef MQTT_PORT
#define MQTT_PORT 1883; #define MQTT_PORT 1883
#endif #endif
#ifndef MQTT_USERNAME #ifndef MQTT_USERNAME
#ifndef MQTT_USER #ifndef MQTT_USER
#define MQTT_USERNAME ""; #define MQTT_USERNAME ""
#else #else
#define MQTT_USERNAME MQTT_USER; #define MQTT_USERNAME MQTT_USER;
#endif #endif
@ -98,9 +98,9 @@ bool mqttSetConfig(const JsonObject& settings);
#ifndef MQTT_PASSWORD #ifndef MQTT_PASSWORD
#ifndef MQTT_PASSW #ifndef MQTT_PASSW
#define MQTT_PASSWORD ""; #define MQTT_PASSWORD ""
#else #else
#define MQTT_PASSWORD MQTT_PASSW; #define MQTT_PASSWORD MQTT_PASSW
#endif #endif
#endif #endif