From 067a4422fec371e1ef3a1b8d13d5da9a1e90c70b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 24 Aug 2017 15:33:27 -0400 Subject: Apply ahf's ceil_div.cocci patch. --- src/or/rephist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/or/rephist.c b/src/or/rephist.c index e65b93fa76..ae45c5023a 100644 --- a/src/or/rephist.c +++ b/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); -- cgit v1.2.3-54-g00ecf