aboutsummaryrefslogtreecommitdiff
path: root/src/or/rephist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-01-03 12:03:04 -0500
committerNick Mathewson <nickm@torproject.org>2011-01-03 12:03:04 -0500
commit57a86fd43374a87b67f4c0b8cb7fc41feebe164f (patch)
tree284facf045120b862bacb705ae526d51e06e4a84 /src/or/rephist.c
parentc5382255bd1f16b718885d4680d28a85d297f117 (diff)
downloadtor-57a86fd43374a87b67f4c0b8cb7fc41feebe164f.tar
tor-57a86fd43374a87b67f4c0b8cb7fc41feebe164f.tar.gz
Fix a wide line in rephist.c
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r--src/or/rephist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 236cbabf3..451db69da 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -1694,7 +1694,8 @@ predicted_ports_free(void)
{
rephist_total_alloc -=
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);
}