Silence compiler warning.
This commit is contained in:
parent
154b7ad07e
commit
2db56878f6
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue