浏览代码

Fix compile on Snow Leopard

Sebastian Hahn 14 年之前
父节点
当前提交
772ce9d085
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
 }