From 46f2e25ce0c65de6f37ec7bb8e410f2f176667a0 Mon Sep 17 00:00:00 2001 From: Adrey Vinogradov Date: Thu, 11 May 2017 20:51:41 +0200 Subject: [PATCH] Fixed bug #51002 Signed-off-by: goldsimon --- doc/mqtt_client.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/mqtt_client.txt b/doc/mqtt_client.txt index 3e67defd..7fd93a8e 100644 --- a/doc/mqtt_client.txt +++ b/doc/mqtt_client.txt @@ -40,7 +40,7 @@ void example_do_connect(mqtt_client_t *client) err = mqtt_client_connect(client, ip_addr, MQTT_PORT, mqtt_connection_cb, 0, &ci); - /* For now just print the result code if something goes wrong + /* For now just print the result code if something goes wrong */ if(err != ERR_OK) { printf("mqtt_connect return %d\n", err); }