diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-23 18:51:27 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-23 18:51:27 (GMT) |
commit | 420dc560145cdf4d64d8ff8043d2d3fae9f235f9 (patch) | |
tree | 287da556908f7cf22985c27c197de38a083c70d0 /Modules | |
parent | d143089e17de135a4643740e16cdc3e8b355dfc8 (diff) | |
download | cpython-420dc560145cdf4d64d8ff8043d2d3fae9f235f9.zip cpython-420dc560145cdf4d64d8ff8043d2d3fae9f235f9.tar.gz cpython-420dc560145cdf4d64d8ff8043d2d3fae9f235f9.tar.bz2 |
Fix compiler warning on Windows
..\Modules\_testcapimodule.c(3320): warning C4098: 'matmulType_dealloc' : 'void' function returning a value
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 291eee6..750e90f 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -3317,7 +3317,7 @@ matmulType_imatmul(PyObject *self, PyObject *other) static void matmulType_dealloc(PyObject *self) { - return Py_TYPE(self)->tp_free(self); + Py_TYPE(self)->tp_free(self); } static PyNumberMethods matmulType_as_number = { |