diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-09-15 16:43:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-15 16:43:17 -0400 |
commit | f4af1919abc0286514051fbbdd97f824879814bb (patch) | |
tree | 25947786250dbe9a4c4630d95c1faaf12629e287 /src/or/control.c | |
parent | 76c33f7ff46df47df0cc880595c4d943d50f019b (diff) | |
download | tor-f4af1919abc0286514051fbbdd97f824879814bb.tar.gz tor-f4af1919abc0286514051fbbdd97f824879814bb.zip |
Replace accumulated C ;;s with ;s
I don't know where these came from.
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c index bd5f01a046..8173cb1e56 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -5846,7 +5846,7 @@ control_event_circuit_cell_stats(void) if (!get_options()->TestingEnableCellStatsEvent || !EVENT_IS_INTERESTING(EVENT_CELL_STATS)) return 0; - cell_stats = tor_malloc(sizeof(cell_stats_t));; + cell_stats = tor_malloc(sizeof(cell_stats_t)); SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (!circ->testing_cell_stats) continue; |