cleanup: Initialize optional fields in profModule

Let's initialize them with NULL to make the compiler happy.
This commit is contained in:
Michael Vetter
2026-02-19 11:37:59 +01:00
parent 70ed25c418
commit 61fa8d5b66

View File

@@ -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