[Xfce4-commits] [xfce/thunar] 02/02: Fix missing return value for debug in thunar_file_reload (bug #12827)
noreply at xfce.org
noreply at xfce.org
Tue Oct 11 23:13:26 CEST 2016
This is an automated email from the git hooks/post-receive script.
hjudt pushed a commit to branch master
in repository xfce/thunar.
commit 79fdf25f4200015c1808f7bbdfa3b3985381eb40
Author: Harald Judt <h.judt at gmx.at>
Date: Tue Oct 11 23:07:03 2016 +0200
Fix missing return value for debug in thunar_file_reload (bug #12827)
This fixes the incomplete commit
https://git.xfce.org/xfce/thunar/commit/?id=9bf051a0005cef3d661493a44e7de911868cf5e7
described in https://bugzilla.xfce.org/show_bug.cgi?id=11913
---
thunar/thunar-file.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c
index 3262dfb..c8ca881 100644
--- a/thunar/thunar-file.c
+++ b/thunar/thunar-file.c
@@ -3920,7 +3920,7 @@ thunar_file_unwatch (ThunarFile *file)
gboolean
thunar_file_reload (ThunarFile *file)
{
- _thunar_return_if_fail (THUNAR_IS_FILE (file));
+ _thunar_return_val_if_fail (THUNAR_IS_FILE (file), FALSE);
/* clear file pxmap cache */
thunar_icon_factory_clear_pixmap_cache (file);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list