[glib] gio: Fix return of value from void function
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gio: Fix return of value from void function
- Date: Wed, 25 Dec 2013 18:58:55 +0000 (UTC)
commit 091e466095c47f60ef5b2b0c81459615169216cf
Author: Matthias Scheler <tron zhadum de>
Date: Wed Dec 25 13:57:56 2013 -0500
gio: Fix return of value from void function
https://bugzilla.gnome.org/show_bug.cgi?id=721034
gio/gfile.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gio/gfile.c b/gio/gfile.c
index 5b9226c..fb800a6 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -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);
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]