]> git.0d.be Git - empathy.git/commitdiff
coding style fixes
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 18 Nov 2009 13:55:42 +0000 (13:55 +0000)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 18 Nov 2009 19:09:34 +0000 (19:09 +0000)
libempathy/empathy-tp-chat.c

index c1a70b6ca022cd3f13b652137a5aa5cec478ea4c..1bcf371c95fbe2d6d06593222f5852e7ad2325ea 100644 (file)
@@ -953,7 +953,7 @@ typedef struct
     const gchar *message;
 } ContactRenameData;
 
-static ContactRenameData*
+static ContactRenameData *
 contact_rename_data_new (TpHandle handle,
                         guint reason,
                         const gchar* message)
@@ -986,7 +986,7 @@ tp_chat_got_renamed_contacts_cb (EmpathyTpContactFactory *factory,
        const TpIntSet *members;
        TpHandle handle;
        EmpathyContact *old = NULL, *new = NULL;
-       ContactRenameData *rename_data = (ContactRenameData*) user_data;
+       ContactRenameData *rename_data = (ContactRenameData *) user_data;
 
        if (error) {
                DEBUG ("Error: %s", error->message);
@@ -1043,8 +1043,8 @@ tp_chat_group_members_changed_cb (TpChannel     *self,
        /* Contact renamed */
        if (reason == TP_CHANNEL_GROUP_CHANGE_REASON_RENAMED) {
                /* there can only be a single 'added' and a single 'removed' handle */
-               g_warn_if_fail(removed->len == 1);
-               g_warn_if_fail(added->len == 1);
+               g_warn_if_fail (removed->len == 1);
+               g_warn_if_fail (added->len == 1);
 
                old_handle = g_array_index (removed, guint, 0);