[or-cvs] [tor/master 3/4] Fix a wide line in rephist.c

nickm at torproject.org nickm at torproject.org
Mon Jan 3 17:01:34 UTC 2011


Author: Nick Mathewson <nickm at torproject.org>
Date: Mon, 3 Jan 2011 12:03:04 -0500
Subject: Fix a wide line in rephist.c
Commit: 57a86fd43374a87b67f4c0b8cb7fc41feebe164f

---
 src/or/rephist.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/or/rephist.c b/src/or/rephist.c
index 236cbab..451db69 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);
 }
 
-- 
1.7.1




More information about the tor-commits mailing list