commit afceb431ed3a1c4daf303e5245a05f800d596fa6 Author: Nick Mathewson nickm@torproject.org Date: Thu Dec 7 15:14:49 2017 -0500
add a missing windows underscore --- src/common/compat_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/compat_time.c b/src/common/compat_time.c index 84033d5d2..204b8d7d1 100644 --- a/src/common/compat_time.c +++ b/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" */
tor-commits@lists.torproject.org