diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 20:55:37 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 21:01:05 +0800 |
commit | 7be06cbed86cd7382854832f58089d6fa269d3b2 (patch) | |
tree | 0917747ba8cdb10063ca40b6b465d8262bc4a064 /libempathy | |
parent | a4003a623b98bb2d868bc3d10da305f2b5fba435 (diff) | |
download | gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar.gz gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar.bz2 gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar.lz gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar.xz gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.tar.zst gsoc2013-empathy-7be06cbed86cd7382854832f58089d6fa269d3b2.zip |
empathy-tp-contact-factory: fix coding style
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-contact-factory.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c index d545d3e43..d8d9597ce 100644 --- a/libempathy/empathy-tp-contact-factory.c +++ b/libempathy/empathy-tp-contact-factory.c @@ -15,7 +15,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * + * * Authors: Xavier Claessens <xclaesse@gmail.com> */ @@ -563,7 +563,7 @@ tp_contact_factory_add_contact (EmpathyTpContactFactory *tp_factory, EmpathyTpContactFactoryPriv *priv = GET_PRIV (tp_factory); TpHandle self_handle; TpHandle handle; - GArray handles = {(gchar*) &handle, 1}; + GArray handles = {(gchar *) &handle, 1}; GHashTable *tokens; GPtrArray *capabilities; GError *error = NULL; @@ -988,7 +988,7 @@ empathy_tp_contact_factory_set_avatar (EmpathyTpContactFactory *tp_factory, if (data && size > 0 && size < G_MAXUINT) { GArray avatar; - avatar.data = (gchar*) data; + avatar.data = (gchar *) data; avatar.len = size; DEBUG ("Setting avatar on connection %s", |