From 673086e13a7ff141929ddc9739da3d197f8a5720 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Mon, 9 Nov 2020 16:08:22 +0800 Subject: [PATCH] mqtt_outbox: Remove unused retry_count field from outbox_item_t Signed-off-by: Axel Lin --- lib/mqtt_outbox.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/mqtt_outbox.c b/lib/mqtt_outbox.c index 4ba4b76..7409965 100644 --- a/lib/mqtt_outbox.c +++ b/lib/mqtt_outbox.c @@ -16,7 +16,6 @@ typedef struct outbox_item { int msg_type; int msg_qos; outbox_tick_t tick; - int retry_count; pending_state_t pending; STAILQ_ENTRY(outbox_item) next; } outbox_item_t;