extract_time(): Squash compiler warning about possibly information-

losing implicit double->long cast.
This commit is contained in:
Tim Peters 2002-09-10 15:37:28 +00:00
parent 076b209ca4
commit 96940cf30d
1 changed files with 1 additions and 1 deletions

View File

@ -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. */