Kaydet (Commit) 2db56878 authored tarafından Mark Dickinson's avatar Mark Dickinson

Silence compiler warning.

üst 154b7ad0
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment