Kaydet (Commit) 1ff110d8 authored tarafından Matthias Klose's avatar Matthias Klose

- fix build failure in Modules/fpectlmodule.c (not built by default)

üst 71fb5134
...@@ -302,7 +302,7 @@ static struct PyModuleDef fpectlmodule = { ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment