Silence compiler warning.

This commit is contained in:
Mark Dickinson 2010-03-07 17:10:19 +00:00
parent 154b7ad07e
commit 2db56878f6
1 changed files with 4 additions and 1 deletions

View File

@ -155,8 +155,11 @@ get_pylong(PyObject *v)
assert(PyLong_Check(v));
r = v;
}
else
else {
r = NULL; /* silence compiler warning about
possibly uninitialized variable */
assert(0); /* shouldn't ever get here */
}
return r;
}