[Xfce4-commits] [xfce/thunar-volman] 01/01: Fix return with no value in function returning non-void (bug #11656)

noreply at xfce.org noreply at xfce.org
Sat Mar 7 23:22:27 CET 2015


This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository xfce/thunar-volman.

commit 2e295e9ce8f7f60a271adf004588b0d8db88db09
Author: Matt Thirtytwo <matt.59491 at gmail.com>
Date:   Sat Mar 7 22:50:32 2015 +0100

    Fix return with no value in function returning non-void (bug #11656)
---
 thunar-volman/tvm-block-device.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/thunar-volman/tvm-block-device.c b/thunar-volman/tvm-block-device.c
index da31efa..edb6cad 100644
--- a/thunar-volman/tvm-block-device.c
+++ b/thunar-volman/tvm-block-device.c
@@ -714,7 +714,7 @@ tvm_block_device_mount (TvmContext *context)
   GMountOperation *mount_operation;
   GVolume         *volume;
 
-  g_return_if_fail (context != NULL);
+  g_return_val_if_fail ((context != NULL), FALSE);
 
   /* determine the GVolume corresponding to the udev device */
   volume = 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list