Fixes cast warning in bufferedio.c

This commit is contained in:
Steve Dower 2015-05-23 08:59:25 -07:00
parent 855482e74c
commit 6baa0f9805
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ _enter_buffered_busy(buffered *self)
* Note that non-daemon threads have already exited here, so this
* shouldn't affect carefully written threaded I/O code.
*/
st = PyThread_acquire_lock_timed(self->lock, 1e6, 0);
st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0);
}
Py_END_ALLOW_THREADS
if (relax_locking && st != PY_LOCK_ACQUIRED) {