瀏覽代碼

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