My Modify MQTTPacket Packet size 100 -> 400

Dependents:   MQTT

Fork of MQTTPacket by MQTT

Files at this revision

API Documentation at this revision

Comitter:
icraggs
Date:
Mon Oct 06 12:00:12 2014 +0000
Parent:
18:bf36e077e7b8
Commit message:
Fix suback formatting

Changed in this revision

MQTTPacket.c Show annotated file Show diff for this revision Revisions of this file
--- a/MQTTPacket.c	Mon Sep 29 11:31:13 2014 +0000
+++ b/MQTTPacket.c	Mon Oct 06 12:00:12 2014 +0000
@@ -418,7 +418,7 @@
 		int grantedQoSs[1];
 		if (MQTTDeserialize_suback(&packetid, maxcount, &count, grantedQoSs, buf, buflen) == 1)
 			strindex = snprintf(strbuf, strbuflen,
-				"SUBACK packet id %d count %d topic %.*s granted qos %d",
+				"SUBACK packet id %d count %d granted qos %d",
 				packetid, count, grantedQoSs[0]);
 	}
 	break;