Browse Source

Fix a compile warning on OS X 10.6

Sebastian Hahn 13 years ago
parent
commit
2d0b56a505
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/connection_or.c

+ 2 - 1
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;