From 2a6df7dfe5ae9c25780166771c56ff921cc90f63 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 20 Feb 2020 15:38:58 +1100 Subject: Cleanup: use named unsigned types in the Python API --- source/blender/python/mathutils/mathutils_Euler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python/mathutils/mathutils_Euler.c') diff --git a/source/blender/python/mathutils/mathutils_Euler.c b/source/blender/python/mathutils/mathutils_Euler.c index 65ca932d118..4375ba31439 100644 --- a/source/blender/python/mathutils/mathutils_Euler.c +++ b/source/blender/python/mathutils/mathutils_Euler.c @@ -848,8 +848,8 @@ PyObject *Euler_CreatePyObject_wrap(float eul[3], const short order, PyTypeObjec PyObject *Euler_CreatePyObject_cb(PyObject *cb_user, const short order, - unsigned char cb_type, - unsigned char cb_subtype) + uchar cb_type, + uchar cb_subtype) { EulerObject *self = (EulerObject *)Euler_CreatePyObject(NULL, order, NULL); if (self) { -- cgit v1.2.3