Browse Source

Fix a function formatting warning in rephist.c

Nick Mathewson 13 years ago
parent
commit
40ef9087cf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/rephist.c

+ 2 - 1
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);
 }