From 36b6fb5cd600a7067d24cfe836c0af4d94e083e4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 Oct 2019 14:44:36 +1100 Subject: Cleanup: warnings building with Python 3.8 --- source/blender/python/mathutils/mathutils_Euler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 56662465b52..3fd9bf666e2 100644 --- a/source/blender/python/mathutils/mathutils_Euler.c +++ b/source/blender/python/mathutils/mathutils_Euler.c @@ -750,7 +750,7 @@ PyTypeObject euler_Type = { sizeof(EulerObject), /* tp_basicsize */ 0, /* tp_itemsize */ (destructor)BaseMathObject_dealloc, /* tp_dealloc */ - NULL, /* tp_print */ + (printfunc)NULL, /* tp_print */ NULL, /* tp_getattr */ NULL, /* tp_setattr */ NULL, /* tp_compare */ -- cgit v1.2.3