From 968cb7dcdfe65dc65bd1151354ac6dd20db38c46 Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Tue, 12 Apr 2016 20:07:58 +0000 Subject: [PATCH] conn: fixed indentation --- src/conn.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/conn.c b/src/conn.c index 2d6b660..d819784 100644 --- a/src/conn.c +++ b/src/conn.c @@ -296,14 +296,14 @@ int xmpp_conn_release(xmpp_conn_t * const conn) parser_free(conn->parser); - /* free queued */ - sq = conn->send_queue_head; - while (sq) { - tsq = sq; - sq = sq->next; - xmpp_free(ctx, tsq->data); - xmpp_free(ctx, tsq); - } + /* free queued */ + sq = conn->send_queue_head; + while (sq) { + tsq = sq; + sq = sq->next; + xmpp_free(ctx, tsq->data); + xmpp_free(ctx, tsq); + } if (conn->domain) xmpp_free(ctx, conn->domain); if (conn->jid) xmpp_free(ctx, conn->jid);