Fix tvtohz() return value

This commit is contained in:
Sebastian Huber 2013-11-06 14:36:07 +01:00
parent 0a57e1db23
commit e6374731ff

View File

@ -50,5 +50,5 @@ tvtohz(struct timeval *tv)
ts.tv_sec = tv->tv_sec;
ts.tv_nsec = tv->tv_usec * 1000;
(int) _Timespec_To_ticks( &ts );
return (int) _Timespec_To_ticks( &ts );
}