From: Sebastian Hahn Date: Fri, 15 Jul 2011 21:12:43 +0000 (+0200) Subject: Fix a compile warning on OS X 10.6 X-Git-Tag: tor-0.2.3.2-alpha~8^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d0b56a5050380f541a9ddd3143dd95300c3f065;p=thirdparty%2Ftor.git Fix a compile warning on OS X 10.6 --- diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 2871f1f36a..e66d36a2f3 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -262,7 +262,8 @@ connection_or_report_broken_states(int severity, int domain) items = smartlist_create(); STRMAP_FOREACH(broken_connection_counts, state, void *, countptr) { broken_state_count_t *c = tor_malloc(sizeof(broken_state_count_t)); - total += c->count = (intptr_t)countptr; + c->count = (intptr_t)countptr; + total += (int)c->count; c->state = state; smartlist_add(items, c); } STRMAP_FOREACH_END;