mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
- fix build failure in Modules/fpectlmodule.c (not built by default)
This commit is contained in:
parent
71fb513437
commit
1ff110d8b3
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ static struct PyModuleDef fpectlmodule = {
|
||||||
PyMODINIT_FUNC PyInit_fpectl(void)
|
PyMODINIT_FUNC PyInit_fpectl(void)
|
||||||
{
|
{
|
||||||
PyObject *m, *d;
|
PyObject *m, *d;
|
||||||
m = PyModule_Create("fpectl", fpectl_methods);
|
m = PyModule_Create(&fpectlmodule);
|
||||||
if (m == NULL)
|
if (m == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
d = PyModule_GetDict(m);
|
d = PyModule_GetDict(m);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue