summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-11-25 23:30:37 (GMT)
committerGitHub <noreply@github.com>2022-11-25 23:30:37 (GMT)
commit5556d3e02ca841b82b1eb42cc3974e0a3bbffaac (patch)
tree6130a8120ec5a36fd739d38047a4372f9ab30925 /Objects
parentae234fbc5ce045066448f2f0cda2f1c3c7ddebea (diff)
downloadcpython-5556d3e02ca841b82b1eb42cc3974e0a3bbffaac.zip
cpython-5556d3e02ca841b82b1eb42cc3974e0a3bbffaac.tar.gz
cpython-5556d3e02ca841b82b1eb42cc3974e0a3bbffaac.tar.bz2
gh-98724: Fix warnings on Py_SETREF() usage (#99781)
Cast argument to the expected type.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c2
-rw-r--r--Objects/typeobject.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index f4bd981..c84b4d3 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -4775,7 +4775,7 @@ long_pow(PyObject *v, PyObject *w, PyObject *x)
* because we're primarily trying to cut overhead for small powers.
*/
assert(bi); /* else there is no significant bit */
- Py_SETREF(z, Py_NewRef(a));
+ Py_SETREF(z, (PyLongObject*)Py_NewRef(a));
for (bit = 2; ; bit <<= 1) {
if (bit > bi) { /* found the first bit */
assert((bi & bit) == 0);
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index ad8a936..b993aa4 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -9593,7 +9593,7 @@ super_init_impl(PyObject *self, PyTypeObject *type, PyObject *obj) {
return -1;
Py_INCREF(obj);
}
- Py_XSETREF(su->type, Py_NewRef(type));
+ Py_XSETREF(su->type, (PyTypeObject*)Py_NewRef(type));
Py_XSETREF(su->obj, obj);
Py_XSETREF(su->obj_type, obj_type);
return 0;