commit afceb431ed3a1c4daf303e5245a05f800d596fa6 parent 45b9b2245fc141df26cfda62b93e2acfac1b50e9 Author: Nick Mathewson <nickm@torproject.org> Date: Thu, 7 Dec 2017 15:14:49 -0500 add a missing windows underscore Diffstat:
| M | 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 @@ -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" */