void can't return...

This commit is contained in:
Thomas Fussell 2017-07-13 17:51:34 -07:00
parent e991bbad43
commit c00900e723

View File

@ -122,11 +122,11 @@ initmyextension(void)
#if PY_MAJOR_VERSION >= 3
module = PyModule_Create(&xlntpyarrow_def);
return module;
#else
module = Py_InitModule("xlntpyarrow", xlntpyarrow_methods);
return;
#endif
return module;
}
} // extern "C"