[or-cvs] [tor/release-0.2.2] Fix a function formatting warning in rephist.c

arma at torproject.org arma at torproject.org
Sat Jan 15 22:31:47 UTC 2011


commit 40ef9087cf7960ce00cd82aa49309f47c9eb064c
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Jan 3 11:59:47 2011 -0500

    Fix a function formatting warning in rephist.c
---
 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 baedc13..d85a8b7 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -1996,7 +1996,8 @@ rep_hist_exit_stats_term(void)
 
 /** Helper for qsort: compare two ints. */
 static int
-_compare_int(const void *x, const void *y) {
+_compare_int(const void *x, const void *y)
+{
   return (*(int*)x - *(int*)y);
 }
 





More information about the tor-commits mailing list