Fixed warning by adding an explicit cast to long; TimerThread.c ..\..\threadutil\src\TimerThread.c(110): warning C4244: '=' : conversion from 'time_t' to 'long', possible loss of data

(cherry picked from commit 1a98394781e15ed12ab7bceb7817bd9786650b87)
This commit is contained in:
Thijs Schreijer 2012-04-10 23:54:34 +02:00 committed by Marcelo Roberto Jimenez
parent 615f5d18ac
commit acc6b4d009

View File

@ -107,7 +107,7 @@ static void *TimerThreadWorker(
} }
if (nextEvent) { if (nextEvent) {
timeToWait.tv_nsec = 0; timeToWait.tv_nsec = 0;
timeToWait.tv_sec = nextEvent->eventTime; timeToWait.tv_sec = (long)nextEvent->eventTime;
ithread_cond_timedwait( &timer->condition, &timer->mutex, ithread_cond_timedwait( &timer->condition, &timer->mutex,
&timeToWait ); &timeToWait );
} else { } else {