Avoid unsigned/sign compare warning from last patch.

This commit is contained in:
Nick Mathewson 2014-09-01 15:42:17 -04:00
parent 60a3897ed9
commit 87f9c51f64

View file

@ -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;