소스 검색

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);
 }