diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-03 11:59:47 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-03 11:59:47 -0500 |
commit | 40ef9087cf7960ce00cd82aa49309f47c9eb064c (patch) | |
tree | 0d355d2e33238f1c46d032b8d25c47db4a9941d7 | |
parent | 66039d98430bfbbc921f386b41366b78579e07f0 (diff) | |
download | tor-40ef9087cf7960ce00cd82aa49309f47c9eb064c.tar.gz tor-40ef9087cf7960ce00cd82aa49309f47c9eb064c.zip |
Fix a function formatting warning in rephist.c
-rw-r--r-- | 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 baedc132a6..d85a8b7c3a 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); } |