diff options
author | Olli Salli <olli.salli@collabora.co.uk> | 2007-06-01 06:36:11 +0000 |
---|---|---|
committer | Olli Salli <olli.salli@collabora.co.uk> | 2007-06-01 06:36:11 +0000 |
commit | ac8531d257812da4d6ae5fe543b05cd021f950f9 (patch) | |
tree | aa654a471187986f5f744fc9bb4fc87afa9a1c6b | |
parent | ad7220cdb9625637bc7fc065b22ea71a5dec5f5e (diff) |
Function call style fix in tp_presence_status_free
-rw-r--r-- | telepathy-glib/presence-mixin.c | 2 |
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); } |