You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
946 B
32 lines
946 B
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
|
|
|