]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
add a missing windows underscore
authorNick Mathewson <nickm@torproject.org>
Thu, 7 Dec 2017 20:14:49 +0000 (15:14 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 7 Dec 2017 20:14:49 +0000 (15:14 -0500)
src/common/compat_time.c

index 84033d5d2252a4684ceb49f99d15e06ec546d999..204b8d7d1554868a4f8ae7972411bd0d925adcf4 100644 (file)
@@ -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" */