Xfce Wiki

Sub domains
 
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dodier-Lazaro <sidnioulz@gmail.com>2015-11-30 15:29:56 +0000
committerAndrzej <ndrwrdck@gmail.com>2015-11-30 21:20:38 +0000
commit77cf6ec3a3969589a4e9a8beea6a122b7dbcc2a0 (patch)
tree7fc5015145495e360d4c752285d581414931f372
parent0184725f6e3b9de7df942ec94a33ca439eb51b98 (diff)
downloadthunar-77cf6ec3a3969589a4e9a8beea6a122b7dbcc2a0.tar.gz
Fixing missing return value in standard view
-rw-r--r--thunar/thunar-standard-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thunar/thunar-standard-view.c b/thunar/thunar-standard-view.c
index 5cc31dd..6b078e3 100644
--- a/thunar/thunar-standard-view.c
+++ b/thunar/thunar-standard-view.c
@@ -2167,7 +2167,7 @@ thunar_standard_view_get_fallback_directory (ThunarFile *directory,
GFile *path;
GFile *tmp;
- _thunar_return_if_fail (THUNAR_IS_FILE (directory));
+ _thunar_return_val_if_fail (THUNAR_IS_FILE (directory), NULL);
/* determine the path of the directory */
path = g_object_ref (thunar_file_get_file (directory));