Browse Source

Issue #20656: Restore explicit downcast in select_select().

Cast from time_t (64 bit) to long (32 bit). It should fix a compiler warning.
pull/9921/head
Victor Stinner 12 years ago
parent
commit
329e492570
  1. 3
      Modules/selectmodule.c

3
Modules/selectmodule.c

@ -232,10 +232,11 @@ select_select(PyObject *self, PyObject *args)
return NULL;
}
#endif
tv.tv_sec = (long)sec;
#else
assert(sizeof(tv.tv_sec) >= sizeof(sec));
#endif
tv.tv_sec = sec;
#endif
tv.tv_usec = usec;
if (tv.tv_sec < 0) {
PyErr_SetString(PyExc_ValueError, "timeout must be non-negative");

Loading…
Cancel
Save