gio: Fix return of value from void function
authorMatthias Scheler <tron@zhadum.de>
Wed, 25 Dec 2013 18:57:56 +0000 (13:57 -0500)
committerColin Walters <walters@verbum.org>
Wed, 25 Dec 2013 18:57:56 +0000 (13:57 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=721034

gio/gfile.c

index 5b9226c..fb800a6 100644 (file)
@@ -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);
 }
 
 /**