From: Nick Mathewson Date: Thu, 24 Aug 2017 19:33:27 +0000 (-0400) Subject: Apply ahf's ceil_div.cocci patch. X-Git-Tag: tor-0.3.2.1-alpha~145^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=067a4422fec371e1ef3a1b8d13d5da9a1e90c70b;p=thirdparty%2Ftor.git Apply ahf's ceil_div.cocci patch. --- 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);