From: Victor Stinner Date: Tue, 18 Feb 2014 08:30:33 +0000 (+0100) Subject: Issue #20656: Restore explicit downcast in select_select(). X-Git-Tag: v3.4.1rc1~233^2~298 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=329e4925700f68c75f8a35612b0a8eae137585d6;p=thirdparty%2FPython%2Fcpython.git Issue #20656: Restore explicit downcast in select_select(). Cast from time_t (64 bit) to long (32 bit). It should fix a compiler warning. --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index c92bd0f806f8..ffaf865df2b7 100644 --- a/Modules/selectmodule.c +++ b/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");