mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-27 19:38:55 +02:00
Don't return something from void function (#583229)
g_async_initable_init_async is void, don't return something from it.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user