summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Feltman <sfeltman@src.gnome.org>2014-08-08 02:46:26 -0700
committerSimon Feltman <sfeltman@src.gnome.org>2014-08-08 02:48:04 -0700
commit3165c17a455652de9a61439428fa40f30120dc6a (patch)
treedd3dfc2de4255a5f3ea05ef1981dbbe972912937
parent74dfec27c6008968cc66a13792dfb02b29c231b6 (diff)
downloadpygobject-3165c17a455652de9a61439428fa40f30120dc6a.tar.gz
Remove incorrect and unused casts from tp_free calls
Arguments to Py_TYPE() do not need to be cast since the macro always casts to a PyObject* internall.
-rw-r--r--gi/pygi-boxed.c2
-rw-r--r--gi/pygi-ccallback.c2
-rw-r--r--gi/pygi-info.c2
-rw-r--r--gi/pygi-struct.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/gi/pygi-boxed.c b/gi/pygi-boxed.c
index b46cdcc5..4fd90d2d 100644
--- a/gi/pygi-boxed.c
+++ b/gi/pygi-boxed.c
@@ -39,7 +39,7 @@ _boxed_dealloc (PyGIBoxed *self)
}
}
- Py_TYPE( (PyGObject *) self)->tp_free ( (PyObject *) self);
+ Py_TYPE (self)->tp_free ((PyObject *)self);
}
void *
diff --git a/gi/pygi-ccallback.c b/gi/pygi-ccallback.c
index 98dd7732..9c6e47ea 100644
--- a/gi/pygi-ccallback.c
+++ b/gi/pygi-ccallback.c
@@ -83,7 +83,7 @@ _ccallback_dealloc (PyGICCallback *self)
pygi_callable_cache_free ( (PyGICallableCache *)self->cache);
}
- Py_TYPE ((PyGObject *)self)->tp_free ((PyObject *)self);
+ Py_TYPE (self)->tp_free ((PyObject *)self);
}
void
diff --git a/gi/pygi-info.c b/gi/pygi-info.c
index fdf12b3c..c07d1136 100644
--- a/gi/pygi-info.c
+++ b/gi/pygi-info.c
@@ -178,7 +178,7 @@ _base_info_dealloc (PyGIBaseInfo *self)
if (self->cache != NULL)
pygi_callable_cache_free ( (PyGICallableCache *) self->cache);
- Py_TYPE( (PyObject *) self)->tp_free ( (PyObject *) self);
+ Py_TYPE (self)->tp_free ((PyObject *)self);
}
static PyObject *
diff --git a/gi/pygi-struct.c b/gi/pygi-struct.c
index 692068b8..adf8e72e 100644
--- a/gi/pygi-struct.c
+++ b/gi/pygi-struct.c
@@ -69,7 +69,7 @@ _struct_dealloc (PyGIStruct *self)
g_base_info_unref (info);
}
- Py_TYPE( (PyGPointer *) self )->tp_free ( (PyObject *) self);
+ Py_TYPE (self)->tp_free ((PyObject *)self);
}
static PyObject *