Преглед изворни кода

Fix a function formatting warning in rephist.c

Nick Mathewson пре 13 година
родитељ
комит
40ef9087cf
1 измењених фајлова са 2 додато и 1 уклоњено
  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);
 }