mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 15:10:48 +01:00
Apply ahf's ceil_div.cocci patch.
This commit is contained in:
parent
e884248118
commit
067a4422fe
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue