From c034a252bb08be3879ee14e7c0db2204e03d4817 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 29 Apr 2014 22:37:05 +1000 Subject: Code cleanup: quiet warnings --- source/blender/python/mathutils/mathutils_Matrix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python') diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c index baadd4dde29..6129bb869f5 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.c +++ b/source/blender/python/mathutils/mathutils_Matrix.c @@ -1251,7 +1251,7 @@ static bool matrix_invert_args_check(const MatrixObject *self, PyObject *args, b return true; case 1: if (check_type) { - const MatrixObject *fallback = PyTuple_GET_ITEM(args, 0); + const MatrixObject *fallback = (MatrixObject *)PyTuple_GET_ITEM(args, 0); if (!MatrixObject_Check(fallback)) { PyErr_SetString(PyExc_TypeError, "Matrix.invert: " @@ -1314,7 +1314,7 @@ static PyObject *Matrix_invert(MatrixObject *self, PyObject *args) } else { if (PyTuple_GET_SIZE(args) == 1) { - MatrixObject *fallback = PyTuple_GET_ITEM(args, 0); + MatrixObject *fallback = (MatrixObject *)PyTuple_GET_ITEM(args, 0); if (BaseMath_ReadCallback(fallback) == -1) return NULL; -- cgit v1.2.3