mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
Merge remote-tracking branch 'sebastian/compile_warning'
This commit is contained in:
commit
8157dcbdf8
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue