extract_time(): Squash compiler warning about possibly information-
losing implicit double->long cast.
This commit is contained in:
parent
076b209ca4
commit
96940cf30d
|
@ -1412,7 +1412,7 @@ extract_time(PyObject *t, long* sec, long* usec)
|
|||
intval = PyInt_AsLong(intobj);
|
||||
Py_DECREF(intobj);
|
||||
*sec = intval;
|
||||
*usec = (tval - intval) * 1e6;
|
||||
*usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
|
||||
if (*usec < 0)
|
||||
/* If rounding gave us a negative number,
|
||||
truncate. */
|
||||
|
|
Loading…
Reference in New Issue