mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
gio: Fix return of value from void function
https://bugzilla.gnome.org/show_bug.cgi?id=721034
This commit is contained in:
committed by
Colin Walters
parent
d7f885b1f3
commit
091e466095
@@ -7676,9 +7676,9 @@ g_file_measure_disk_usage_async (GFile *file,
|
||||
g_return_if_fail (G_IS_FILE (file));
|
||||
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
|
||||
|
||||
return G_FILE_GET_IFACE (file)->measure_disk_usage_async (file, flags, io_priority, cancellable,
|
||||
progress_callback, progress_data,
|
||||
callback, user_data);
|
||||
G_FILE_GET_IFACE (file)->measure_disk_usage_async (file, flags, io_priority, cancellable,
|
||||
progress_callback, progress_data,
|
||||
callback, user_data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user