From 2c5984c9b1fd9cb3556de283c00e50653c070115 Mon Sep 17 00:00:00 2001 From: leo Date: Sun, 9 Jul 2023 21:58:30 +0200 Subject: [PATCH] bugfix --- everblu_meters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/everblu_meters.c b/everblu_meters.c index 3ae4866..8a0dd2a 100644 --- a/everblu_meters.c +++ b/everblu_meters.c @@ -111,7 +111,7 @@ int main(int argc, char *argv[]) //Connect to MQTT server if(mosquitto_connect(mosq, MQTT_HOST, MQTT_PORT, MQTT_KEEP_ALIVE)){ - fprintf(stderr, "ERROR: Unable to connect to MQTT broker (%s %i %s).\n", MQTT_HOST, MQTT_USER, MQTT_PORT); + fprintf(stderr, "ERROR: Unable to connect to MQTT broker (%s %i %s).\n", MQTT_HOST, MQTT_PORT, MQTT_USER); return 1; } //Start a thread, and call mosquitto? Loop() continuously in the thread to process network information