summaryrefslogtreecommitdiffstats
path: root/arch/tde-base/tde-tdebindings/bp000-817f960e.diff
blob: e8d31b47488f64fa4fdea79da9f9d43bea02f073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 817f960e8ecca5074171cfc8267dcebbb1a7f514 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= <francois.andriot@free.fr>
Date: Mon, 10 May 2021 20:45:41 +0200
Subject: Fix FTBFS on Fedora 34
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Qt.cpp:2643:17: error: ordered comparison of pointer with integer zero ('void*' and 'int')

Signed-off-by: François Andriot <francois.andriot@free.fr>
---
 qtruby/rubylib/qtruby/Qt.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qtruby/rubylib/qtruby/Qt.cpp b/qtruby/rubylib/qtruby/Qt.cpp
index 834cc3b2..abb44588 100644
--- a/qtruby/rubylib/qtruby/Qt.cpp
+++ b/qtruby/rubylib/qtruby/Qt.cpp
@@ -2640,7 +2640,7 @@ isObject(VALUE /*self*/, VALUE obj)
 {
     void * ptr = 0;
     ptr = value_to_ptr(obj);
-    return (ptr > 0 ? Qtrue : Qfalse);
+    return (ptr != 0 ? Qtrue : Qfalse);
 }
 
 static VALUE
-- 
cgit v1.2.1