summaryrefslogtreecommitdiff
path: root/telepathy-logger/util.c
diff options
context:
space:
mode:
authorCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-10 18:09:48 +0000
committerCosimo Alfarano <cosimo.alfarano@collabora.co.uk>2010-02-10 18:09:48 +0000
commit974ce3392375245be7f391aeb3946d63485b7a0a (patch)
treec20688b701300e753b46491a8d595fdee389b23e /telepathy-logger/util.c
parenta9355174e173027efc32615d55411d635d30ba18 (diff)
downloadtelepathy-logger-974ce3392375245be7f391aeb3946d63485b7a0a.tar.gz
Fixed check-coding-style
* now it only fails the dbus-binding-tool generated code
Diffstat (limited to 'telepathy-logger/util.c')
-rw-r--r--telepathy-logger/util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/telepathy-logger/util.c b/telepathy-logger/util.c
index 2356dda..5a48d80 100644
--- a/telepathy-logger/util.c
+++ b/telepathy-logger/util.c
@@ -43,7 +43,7 @@ gboolean
tpl_strequal (const gchar *left,
const gchar *right)
{
- return ! tp_strdiff(left, right);
+ return !tp_strdiff (left, right);
}
@@ -103,13 +103,13 @@ tpl_actionchain_continue (TplActionChain *self)
{
GSimpleAsyncResult *simple = self->simple;
tpl_actionchain_free (self);
- g_simple_async_result_set_op_res_gboolean ((GSimpleAsyncResult*) simple, TRUE);
+ g_simple_async_result_set_op_res_gboolean ((GSimpleAsyncResult *) simple, TRUE);
g_simple_async_result_complete (simple);
}
else
{
TplPendingAction next_action = g_queue_pop_head (self->chain);
- next_action(self);
+ next_action (self);
}
}
@@ -120,12 +120,12 @@ tpl_actionchain_terminate (TplActionChain *self)
GSimpleAsyncResult *simple = self->simple;
tpl_actionchain_free (self);
- g_simple_async_result_set_op_res_gboolean ((GSimpleAsyncResult*) simple, FALSE);
+ g_simple_async_result_set_op_res_gboolean ((GSimpleAsyncResult *) simple, FALSE);
g_simple_async_result_complete (simple);
}
gboolean
tpl_actionchain_finish (GAsyncResult *result)
{
- return g_simple_async_result_get_op_res_gboolean ((GSimpleAsyncResult*) result);
+ return g_simple_async_result_get_op_res_gboolean ((GSimpleAsyncResult *) result);
}