summaryrefslogtreecommitdiff
path: root/gio/gasyncinitable.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2009-05-20 13:49:47 +0200
committerAlexander Larsson <alexl@redhat.com>2009-05-20 13:49:47 +0200
commitcb7a300e3136c9d1ee397a4c740513b8a0f21968 (patch)
tree1c9be7f8d040fe975d8f487197f57be3e0936412 /gio/gasyncinitable.c
parent1cbdd2495dcc06eb11c3ef9207aae07acb7c4ba7 (diff)
Don't return something from void function (#583229)
g_async_initable_init_async is void, don't return something from it.
Diffstat (limited to 'gio/gasyncinitable.c')
-rw-r--r--gio/gasyncinitable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gasyncinitable.c b/gio/gasyncinitable.c
index 9c10c4f62..238918b65 100644
--- a/gio/gasyncinitable.c
+++ b/gio/gasyncinitable.c
@@ -154,7 +154,7 @@ g_async_initable_init_async (GAsyncInitable *initable,
iface = G_ASYNC_INITABLE_GET_IFACE (initable);
- return (* iface->init_async) (initable, io_priority, cancellable, callback, user_data);
+ (* iface->init_async) (initable, io_priority, cancellable, callback, user_data);
}
/**