mqtt: Trivial error message fix

Fix trivial copy-paste mistake.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
diff --git a/src/apps/mqtt/mqtt.c b/src/apps/mqtt/mqtt.c
index fa2ba8b..11ca6e3 100644
--- a/src/apps/mqtt/mqtt.c
+++ b/src/apps/mqtt/mqtt.c
@@ -1134,7 +1134,7 @@
   topic_len = (u16_t)topic_strlen;
   /* Topic string, pkt_id, qos for subscribe */
   total_len =  topic_len + 2 + 2 + (sub != 0);
-  LWIP_ERROR("mqtt_publish: total length overflow", (total_len <= 0xFFFF), return ERR_ARG);
+  LWIP_ERROR("mqtt_sub_unsub: total length overflow", (total_len <= 0xFFFF), return ERR_ARG);
   remaining_length = (u16_t)total_len;
 
   LWIP_ASSERT("mqtt_sub_unsub: qos < 3", qos < 3);