mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
type error fix for monotime_coarse_add_msec on windows
This commit is contained in:
parent
0e790bb40d
commit
bac0bcbba1
@ -635,7 +635,8 @@ monotime_add_msec(monotime_t *out, const monotime_t *val, uint32_t msec)
|
||||
}
|
||||
|
||||
void
|
||||
monotime_coarse_add_msec(monotime_t *out, const monotime_t *val, uint32_t msec)
|
||||
monotime_coarse_add_msec(monotime_coarse_t *out, const monotime_coarse_t *val,
|
||||
uint32_t msec)
|
||||
{
|
||||
out->tick_count_ = val->tick_count_ + msec;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user