gentoo/dev-python/PyQt5-sip/files/PyQt5-sip-12.13.0-c99.patch
Kostadin Shishmanov 2a56d48043
dev-python/PyQt5-sip: Fix incompatible pointer types
Closes: https://bugs.gentoo.org/919000
Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
Closes: https://github.com/gentoo/gentoo/pull/35222
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
2024-02-07 20:49:19 -05:00

17 lines
522 B
Diff

https://bugs.gentoo.org/919000
https://www.riverbankcomputing.com/hg/sip/rev/afc99fa84d0d
diff --git a/siplib.c b/siplib.c
index 8b0a6d5..d996a9c 100644
--- a/siplib.c
+++ b/siplib.c
@@ -3902,7 +3902,7 @@ static int parsePass1(PyObject **parseErrp, sipSimpleWrapper **selfp,
{
case '#':
/* A ctor has an argument with the /Transfer/ annotation. */
- *selfp = va_arg(va, PyObject *);
+ *selfp = (sipSimpleWrapper *) va_arg(va, PyObject *);
break;
case 'B':