mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Fix compilation warning on Windows
This commit is contained in:
parent
0296a56520
commit
7e447c8224
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ static struct PyModuleDef multiprocessing_module = {
|
|||
PyMODINIT_FUNC
|
||||
PyInit__multiprocessing(void)
|
||||
{
|
||||
PyObject *module, *temp, *value;
|
||||
PyObject *module, *temp, *value = NULL;
|
||||
|
||||
/* Initialize module */
|
||||
module = PyModule_Create(&multiprocessing_module);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue