diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-12-07 15:14:49 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-07 15:14:49 -0500 |
commit | afceb431ed3a1c4daf303e5245a05f800d596fa6 (patch) | |
tree | e09e664f52b040172b97c88e6a7a439dbaea7331 /src/common/compat_time.c | |
parent | 45b9b2245fc141df26cfda62b93e2acfac1b50e9 (diff) | |
download | tor-afceb431ed3a1c4daf303e5245a05f800d596fa6.tar.gz tor-afceb431ed3a1c4daf303e5245a05f800d596fa6.zip |
add a missing windows underscore
Diffstat (limited to 'src/common/compat_time.c')
-rw-r--r-- | src/common/compat_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" */ |