Просмотр исходного кода

add a missing windows underscore

Nick Mathewson 6 лет назад
Родитель
Сommit
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" */