Don't return something from void function (#583229)
authorAlexander Larsson <alexl@redhat.com>
Wed, 20 May 2009 11:49:47 +0000 (13:49 +0200)
committerAlexander Larsson <alexl@redhat.com>
Wed, 20 May 2009 11:49:47 +0000 (13:49 +0200)
g_async_initable_init_async is void, don't return something from it.

gio/gasyncinitable.c

index 9c10c4f..238918b 100644 (file)
@@ -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);
 }
 
 /**