mirror of
https://github.com/python/cpython.git
synced 2024-11-27 11:55:13 +08:00
- fix build failure in Modules/fpectlmodule.c (not built by default)
This commit is contained in:
parent
71fb513437
commit
1ff110d8b3
@ -302,7 +302,7 @@ static struct PyModuleDef fpectlmodule = {
|
||||
PyMODINIT_FUNC PyInit_fpectl(void)
|
||||
{
|
||||
PyObject *m, *d;
|
||||
m = PyModule_Create("fpectl", fpectl_methods);
|
||||
m = PyModule_Create(&fpectlmodule);
|
||||
if (m == NULL)
|
||||
return NULL;
|
||||
d = PyModule_GetDict(m);
|
||||
|
Loading…
Reference in New Issue
Block a user