conn: fixed indentation

This commit is contained in:
Dmitry Podgorny
2016-04-12 20:07:58 +00:00
parent 367aeb5844
commit 968cb7dcdf

View File

@@ -296,14 +296,14 @@ int xmpp_conn_release(xmpp_conn_t * const conn)
parser_free(conn->parser); parser_free(conn->parser);
/* free queued */ /* free queued */
sq = conn->send_queue_head; sq = conn->send_queue_head;
while (sq) { while (sq) {
tsq = sq; tsq = sq;
sq = sq->next; sq = sq->next;
xmpp_free(ctx, tsq->data); xmpp_free(ctx, tsq->data);
xmpp_free(ctx, tsq); xmpp_free(ctx, tsq);
} }
if (conn->domain) xmpp_free(ctx, conn->domain); if (conn->domain) xmpp_free(ctx, conn->domain);
if (conn->jid) xmpp_free(ctx, conn->jid); if (conn->jid) xmpp_free(ctx, conn->jid);