소스 검색

add a missing windows underscore

Nick Mathewson 6 년 전
부모
커밋
afceb431ed
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/compat_time.c

+ 1 - 1
src/common/compat_time.c

@@ -563,7 +563,7 @@ static const uint32_t STAMP_TICKS_PER_SECOND = 1000;
 uint32_t
 monotime_coarse_to_stamp(const monotime_coarse_t *t)
 {
-  return (uint32_t) t->tick_count;
+  return (uint32_t) t->tick_count_;
 }
 
 /* end of "_WIN32" */