Remove unused variable.

This commit is contained in:
Mark Dickinson 2010-06-12 09:25:13 +00:00
parent bfd57618b5
commit 0681785d09
1 changed files with 1 additions and 1 deletions

View File

@ -1963,7 +1963,7 @@ static struct PyModuleDef _structmodule = {
PyMODINIT_FUNC
PyInit__struct(void)
{
PyObject *ver, *m;
PyObject *m;
m = PyModule_Create(&_structmodule);
if (m == NULL)