mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Avoid unsigned/sign compare warning from last patch.
This commit is contained in:
parent
60a3897ed9
commit
87f9c51f64
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ entry_is_time_to_retry(const entry_guard_t *e, time_t now)
|
|||
|
||||
time_t ith_deadline_for_retry;
|
||||
time_t unreachable_for;
|
||||
int i;
|
||||
unsigned i;
|
||||
|
||||
if (e->last_attempted < e->unreachable_since)
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue