aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-14 22:35:51 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-14 22:35:51 +0800
commited8e51644481f3f9c2fb9059812bee49eabc423a (patch)
treec2cb4b25d53e0be9e8e4e7282b7396d76d517a01
parent65d16f797d9d3d7c5e46ef46790d13197f21cc9e (diff)
downloadgsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar.gz
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar.bz2
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar.lz
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar.xz
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.tar.zst
gsoc2013-empathy-ed8e51644481f3f9c2fb9059812bee49eabc423a.zip
coding style fixes
-rw-r--r--libempathy-gtk/empathy-contact-blocking-dialog.c2
-rw-r--r--libempathy/empathy-contact.c8
-rw-r--r--libempathy/empathy-tls-verifier.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/libempathy-gtk/empathy-contact-blocking-dialog.c b/libempathy-gtk/empathy-contact-blocking-dialog.c
index 1ec60b0ac..c28362b70 100644
--- a/libempathy-gtk/empathy-contact-blocking-dialog.c
+++ b/libempathy-gtk/empathy-contact-blocking-dialog.c
@@ -302,7 +302,7 @@ block_cb (GObject *source,
}
static void
-block_contact_got_contact(TpConnection *conn,
+block_contact_got_contact (TpConnection *conn,
guint n_contacts,
TpContact * const *contacts,
const gchar * const *requested_ids,
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c
index 572d49250..15946a16a 100644
--- a/libempathy/empathy-contact.c
+++ b/libempathy/empathy-contact.c
@@ -2089,9 +2089,9 @@ contact_##name##_cb (GObject *source, \
} \
}
-declare_contact_cb(request_subscription)
-declare_contact_cb(authorize_publication)
-declare_contact_cb(unblock)
+declare_contact_cb (request_subscription)
+declare_contact_cb (authorize_publication)
+declare_contact_cb (unblock)
void
empathy_contact_add_to_contact_list (EmpathyContact *self,
@@ -2110,7 +2110,7 @@ empathy_contact_add_to_contact_list (EmpathyContact *self,
tp_contact_unblock_async (priv->tp_contact, contact_unblock_cb, NULL);
}
-declare_contact_cb(remove)
+declare_contact_cb (remove)
void
empathy_contact_remove_from_contact_list (EmpathyContact *self)
diff --git a/libempathy/empathy-tls-verifier.c b/libempathy/empathy-tls-verifier.c
index c22eaf063..2f20ca8e3 100644
--- a/libempathy/empathy-tls-verifier.c
+++ b/libempathy/empathy-tls-verifier.c
@@ -526,7 +526,7 @@ empathy_tls_verifier_verify_async (EmpathyTLSVerifier *self,
chain = gcr_certificate_chain_new ();
for (idx = 0; idx < cert_data->len; ++idx) {
data = g_ptr_array_index (cert_data, idx);
- cert = gcr_simple_certificate_new ((guchar*)data->data, data->len);
+ cert = gcr_simple_certificate_new ((guchar *) data->data, data->len);
gcr_certificate_chain_add (chain, cert);
g_object_unref (cert);
}