Style fix in lm_connection_new
authorMikael Hallendal <micke@imendio.com>
Mon, 20 Oct 2008 17:48:04 +0200
changeset 532 c917a1900d5c
parent 531 b9e64fde4cbf
child 533 c45243823756
Style fix in lm_connection_new
loudmouth/lm-connection.c
--- a/loudmouth/lm-connection.c	Mon Oct 20 17:44:28 2008 +0200
+++ b/loudmouth/lm-connection.c	Mon Oct 20 17:48:04 2008 +0200
@@ -1250,16 +1250,16 @@
         connection->use_srv = TRUE;
     }
 
-    connection->port              = LM_CONNECTION_DEFAULT_PORT;
-    connection->queue             = lm_message_queue_new ((LmMessageQueueCallback) connection_message_queue_cb, 
+    connection->port        = LM_CONNECTION_DEFAULT_PORT;
+    connection->queue       = lm_message_queue_new ((LmMessageQueueCallback) connection_message_queue_cb, 
                                                           connection);
-    connection->state             = LM_CONNECTION_STATE_CLOSED;
+    connection->state       = LM_CONNECTION_STATE_CLOSED;
     
     connection->id_handlers = g_hash_table_new_full (g_str_hash, 
                                                      g_str_equal,
                                                      g_free, 
                                                      (GDestroyNotify) lm_message_handler_unref);
-    connection->ref_count         = 1;
+    connection->ref_count   = 1;
     
     for (i = 0; i < LM_MESSAGE_TYPE_UNKNOWN; ++i) {
         connection->handlers[i] = NULL;