Fix a wide line in rephist.c

This commit is contained in:
Nick Mathewson 2011-01-03 12:03:04 -05:00
parent c5382255bd
commit 57a86fd433

View File

@ -1694,7 +1694,8 @@ predicted_ports_free(void)
{ {
rephist_total_alloc -= rephist_total_alloc -=
smartlist_len(predicted_ports_list)*sizeof(predicted_port_t); smartlist_len(predicted_ports_list)*sizeof(predicted_port_t);
SMARTLIST_FOREACH(predicted_ports_list, predicted_port_t *, pp, tor_free(pp)); SMARTLIST_FOREACH(predicted_ports_list, predicted_port_t *,
pp, tor_free(pp));
smartlist_free(predicted_ports_list); smartlist_free(predicted_ports_list);
} }