Unverified Commit b18f5ee7 authored by Ian Craggs's avatar Ian Craggs Committed by GitHub

Merge pull request #390 from nsjodk/develop

Remove shadow warn. (MQTTAsync_completeConnection)
parents abecbdc8 1ab87aac
...@@ -1735,8 +1735,8 @@ static int MQTTAsync_completeConnection(MQTTAsyncs* m, MQTTPacket* pack) ...@@ -1735,8 +1735,8 @@ static int MQTTAsync_completeConnection(MQTTAsyncs* m, MQTTPacket* pack)
while (ListNextElement(m->c->outboundMsgs, &outcurrent)) while (ListNextElement(m->c->outboundMsgs, &outcurrent))
{ {
Messages* m = (Messages*)(outcurrent->content); Messages* messages = (Messages*)(outcurrent->content);
m->lastTouch = 0; messages->lastTouch = 0;
} }
MQTTProtocol_retry((time_t)0, 1, 1); MQTTProtocol_retry((time_t)0, 1, 1);
if (m->c->connected != 1) if (m->c->connected != 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment