Explorar el Código

Fix a function formatting warning in rephist.c

Nick Mathewson hace 13 años
padre
commit
40ef9087cf
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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);
 }