From 87f9c51f6423230c2b6f7dfbd1c76975a39aece0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 1 Sep 2014 15:42:17 -0400 Subject: [PATCH] Avoid unsigned/sign compare warning from last patch. --- src/or/entrynodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index b5dd09f6f1..b95391e37a 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -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;