mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-07-28 05:36:37 +00:00
Fix misplaced semi-colons
This commit is contained in:
parent
56aba9b986
commit
64e6b13a4f
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user