瀏覽代碼

Apply ahf's ceil_div.cocci patch.

Nick Mathewson 6 年之前
父節點
當前提交
067a4422fe
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/or/rephist.c

+ 1 - 1
src/or/rephist.c

@@ -2552,7 +2552,7 @@ rep_hist_format_buffer_stats(time_t now)
                processed_cells_string,
                queued_cells_string,
                time_in_queue_string,
-               (number_of_circuits + SHARES - 1) / SHARES);
+               CEIL_DIV(number_of_circuits, SHARES));
   tor_free(processed_cells_string);
   tor_free(queued_cells_string);
   tor_free(time_in_queue_string);