diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c index c8a04a8f..57222687 100644 --- a/src/plugins/python_api.c +++ b/src/plugins/python_api.c @@ -1583,7 +1583,11 @@ static struct PyModuleDef profModule = { "prof", "", -1, - apiMethods + apiMethods, + NULL, /* m_slots */ + NULL, /* m_traverse */ + NULL, /* m_clear */ + NULL /* m_free */ }; #endif