Always round up when there's a fractional number of msecs.

This commit is contained in:
Christopher Davis 2010-04-09 19:16:09 -07:00
parent 850c3ff232
commit 8f9e60c825

View File

@ -1904,6 +1904,6 @@ evutil_tv_to_msec(const struct timeval *tv)
if (tv->tv_usec > 1000000 || tv->tv_sec > MAX_SECONDS_IN_MSEC_LONG)
return -1;
return (tv->tv_sec * 1000) + (tv->tv_usec / 1000);
return (tv->tv_sec * 1000) + ((tv->tv_usec + 999) / 1000);
}