[or-cvs] [tor/master 2/4] Fix a function formatting warning 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 11:59:47 -0500
Subject: Fix a function formatting warning in rephist.c
Commit: 40ef9087cf7960ce00cd82aa49309f47c9eb064c
---
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);
}
--
1.7.1
More information about the tor-commits
mailing list