mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-14 19:55:12 +01: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:
parent
1cbdd2495d
commit
cb7a300e31
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user