Explorar el Código

Fix compile on Snow Leopard

Sebastian Hahn hace 16 años
padre
commit
772ce9d085
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/common/util.c

+ 1 - 1
src/common/util.c

@@ -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;
 }