From 01d6801f4e11774976212f52d22f6b8ea6f57684 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sun, 8 Sep 2013 16:44:49 +0400 Subject: [PATCH] (do_compute_dir_count): display directory name only. Signed-off-by: Andrew Borodin --- src/filemanager/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/filemanager/file.c b/src/filemanager/file.c index 23e0e73d6..aaf001930 100644 --- a/src/filemanager/file.c +++ b/src/filemanager/file.c @@ -549,7 +549,8 @@ do_compute_dir_size (const vfs_path_t * dirname_vpath, void *ui, update_ui_count++; if ((update_ui_count & 31) == 0) ret = - (cback == NULL) ? FILE_CONT : cback (ui, tmp_vpath, *dir_count, *ret_total); + (cback == NULL) ? FILE_CONT : cback (ui, dirname_vpath, *dir_count, + *ret_total); } }