From e12bb2a4eb7b436a870f024c8b766a6664a5c577 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sun, 1 Jan 2017 20:26:28 +0100 Subject: [PATCH] Fix comma at end of enum list in mqtt.h --- src/include/lwip/apps/mqtt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/apps/mqtt.h b/src/include/lwip/apps/mqtt.h index 8d7c457e..ee880405 100644 --- a/src/include/lwip/apps/mqtt.h +++ b/src/include/lwip/apps/mqtt.h @@ -106,7 +106,7 @@ typedef void (*mqtt_connection_cb_t)(mqtt_client_t *client, void *arg, mqtt_conn * Data callback flags */ enum { /** Flag set when last fragment of data arrives in data callback */ - MQTT_DATA_FLAG_LAST = 1, + MQTT_DATA_FLAG_LAST = 1 }; /**