Fix a couple of warnings

This commit is contained in:
Neal Norwitz 2007-08-26 05:32:41 +00:00
parent 3c814d2550
commit 5616c6d690
2 changed files with 2 additions and 2 deletions

View file

@ -2366,7 +2366,7 @@ PyImport_ReloadModule(PyObject *m)
"reload() argument must be module");
return NULL;
}
name = PyModule_GetName(m);
name = (char*)PyModule_GetName(m);
if (name == NULL)
return NULL;
if (m != PyDict_GetItemString(modules, name)) {