aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/debug/stats.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/debug/stats.cc')
-rw-r--r--src/core/lib/debug/stats.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/debug/stats.cc b/src/core/lib/debug/stats.cc
index 7d2af71c47..0b39b2b1e7 100644
--- a/src/core/lib/debug/stats.cc
+++ b/src/core/lib/debug/stats.cc
@@ -62,9 +62,9 @@ void grpc_stats_diff(const grpc_stats_data* b, const grpc_stats_data* a,
}
}
-int grpc_stats_histo_find_bucket_slow(grpc_exec_ctx* exec_ctx, int value,
- const int* table, int table_size) {
- GRPC_STATS_INC_HISTOGRAM_SLOW_LOOKUPS(exec_ctx);
+int grpc_stats_histo_find_bucket_slow(int value, const int* table,
+ int table_size) {
+ GRPC_STATS_INC_HISTOGRAM_SLOW_LOOKUPS();
const int* const start = table;
while (table_size > 0) {
int step = table_size / 2;