Fix compile on Snow Leopard

This commit is contained in:
Sebastian Hahn
2009-09-21 05:12:37 +02:00
committed by Nick Mathewson
parent 61e814af7a
commit 772ce9d085
+1 -1
View File
@@ -1055,7 +1055,7 @@ tv_to_msec(const struct timeval *tv)
{
int64_t conv = ((int64_t)tv->tv_sec)*1000L;
/* Round ghetto-style */
conv += (tv->tv_usec+500)/1000L;
conv += ((int64_t)tv->tv_usec+500)/1000L;
return conv;
}