From c34ff3c579610589a43ea775d0dbf0e15fa6b35f Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 23 Jul 2007 16:04:37 +0100 Subject: [PATCH] sel-timer: Pyrex now wants explicit truncations to integer. Organization: Straylight/Edgeware From: Mark Wooding --- sel-timer.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sel-timer.pyx b/sel-timer.pyx index 6e00717..6bc4e28 100644 --- a/sel-timer.pyx +++ b/sel-timer.pyx @@ -30,8 +30,8 @@ cdef double _tvtofloat(timeval *tv): cdef void _floattotv(timeval *tv, double t): cdef double s, us us = modf(t, &s) - tv.tv_sec = s - tv.tv_usec = us * 1000000 + tv.tv_sec = s + tv.tv_usec = (us * 1000000) cdef class SelTimer: cdef sel_timer t -- [mdw]