From: Nick Mathewson Date: Mon, 1 Sep 2014 19:42:17 +0000 (-0400) Subject: Avoid unsigned/sign compare warning from last patch. X-Git-Tag: tor-0.2.6.1-alpha~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87f9c51f6423230c2b6f7dfbd1c76975a39aece0;p=thirdparty%2Ftor.git Avoid unsigned/sign compare warning from last patch. --- 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;