summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlli Salli <olli.salli@collabora.co.uk>2007-06-01 06:36:11 +0000
committerOlli Salli <olli.salli@collabora.co.uk>2007-06-01 06:36:11 +0000
commitac8531d257812da4d6ae5fe543b05cd021f950f9 (patch)
treeaa654a471187986f5f744fc9bb4fc87afa9a1c6b
parentad7220cdb9625637bc7fc065b22ea71a5dec5f5e (diff)
Function call style fix in tp_presence_status_free
-rw-r--r--telepathy-glib/presence-mixin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/presence-mixin.c b/telepathy-glib/presence-mixin.c
index 3281a2882..e673afa3e 100644
--- a/telepathy-glib/presence-mixin.c
+++ b/telepathy-glib/presence-mixin.c
@@ -110,7 +110,7 @@ tp_presence_status_free (TpPresenceStatus *status)
return;
if (status->optional_arguments)
- g_hash_table_unref(status->optional_arguments);
+ g_hash_table_unref (status->optional_arguments);
g_slice_free(TpPresenceStatus, status);
}