From b72c42ff45836c0d2c2bc0bfd413ab3ee43c6e4b Mon Sep 17 00:00:00 2001 From: Matt Thirtytwo Date: Sat, 7 Mar 2015 22:50:32 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20compiler=20warning:=20=E2=80=98return=E2=80?= =?UTF-8?q?=99=20with=20no=20value,=20in=20function=20returning=20non-void?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 = -- 1.7.9.5