aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-chat.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-18 21:55:42 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-19 03:09:34 +0800
commit8a149be5cabca92862b84dff0642ee44ea16dfa3 (patch)
tree26c0686e075dcb869430ce1e01c4fc3ca4538ab6 /libempathy/empathy-tp-chat.c
parentfa08a8879c77e99f706ee805df0e2821f202e9de (diff)
downloadgsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar.gz
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar.bz2
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar.lz
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar.xz
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.tar.zst
gsoc2013-empathy-8a149be5cabca92862b84dff0642ee44ea16dfa3.zip
coding style fixes
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r--libempathy/empathy-tp-chat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index c1a70b6ca..1bcf371c9 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -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);