mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-01 05:08:10 -07:00
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>
17 lines
522 B
Diff
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':
|