[glib] gio-du: show the correct filename in progress
- From: Ryan Lortie <desrt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gio-du: show the correct filename in progress
- Date: Mon, 16 Sep 2013 18:13:11 +0000 (UTC)
commit 348764269d0d2af3371caeb96cae65976891022c
Author: Ryan Lortie <desrt desrt ca>
Date: Mon Sep 16 13:42:02 2013 -0400
gio-du: show the correct filename in progress
We were showing argv[1] in the progress output before, which is not
always the filename.
gio/tests/gio-du.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gio/tests/gio-du.c b/gio/tests/gio-du.c
index b0f1fac..a33cf73 100644
--- a/gio/tests/gio-du.c
+++ b/gio/tests/gio-du.c
@@ -150,7 +150,7 @@ main (int argc, char **argv)
if (option_use_async)
{
g_file_measure_disk_usage_async (file, flags, G_PRIORITY_DEFAULT, NULL,
- progress, argv[1], async_ready_func, argv_utf8);
+ progress, argv_utf8, async_ready_func, argv_utf8);
outstanding_asyncs++;
}
else
@@ -160,7 +160,7 @@ main (int argc, char **argv)
guint64 num_dirs;
guint64 num_files;
- g_file_measure_disk_usage (file, flags, NULL, progress, argv[1],
+ g_file_measure_disk_usage (file, flags, NULL, progress, argv_utf8,
&disk_usage, &num_dirs, &num_files, &error);
print_result (argv_utf8, disk_usage, num_dirs, num_files, error, '\n');
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]