summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch')
-rw-r--r--meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch
new file mode 100644
index 000000000..7233ea7ba
--- /dev/null
+++ b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman/0001-Fix-return-with-no-value-in-function-returning-non-v.patch
@@ -0,0 +1,26 @@
1From 2e295e9ce8f7f60a271adf004588b0d8db88db09 Mon Sep 17 00:00:00 2001
2From: Matt Thirtytwo <matt.59491@gmail.com>
3Date: Sat, 7 Mar 2015 22:50:32 +0100
4Subject: [PATCH] Fix return with no value in function returning non-void (bug
5 #11656)
6
7---
8 thunar-volman/tvm-block-device.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/thunar-volman/tvm-block-device.c b/thunar-volman/tvm-block-device.c
12index da31efa..edb6cad 100644
13--- a/thunar-volman/tvm-block-device.c
14+++ b/thunar-volman/tvm-block-device.c
15@@ -714,7 +714,7 @@ tvm_block_device_mount (TvmContext *context)
16 GMountOperation *mount_operation;
17 GVolume *volume;
18
19- g_return_if_fail (context != NULL);
20+ g_return_val_if_fail ((context != NULL), FALSE);
21
22 /* determine the GVolume corresponding to the udev device */
23 volume =
24--
251.9.0
26