Browse Source

Fix comma at end of enum list in mqtt.h

Dirk Ziegelmeier 9 years ago
parent
commit
e12bb2a4eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/include/lwip/apps/mqtt.h

+ 1 - 1
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
 };
 
 /**