From: Nick Mathewson Date: Thu, 7 Dec 2017 20:14:49 +0000 (-0500) Subject: add a missing windows underscore X-Git-Tag: tor-0.3.3.1-alpha~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afceb431ed3a1c4daf303e5245a05f800d596fa6;p=thirdparty%2Ftor.git add a missing windows underscore --- diff --git a/src/common/compat_time.c b/src/common/compat_time.c index 84033d5d22..204b8d7d15 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" */