diff options
author | vjpai <vpai@google.com> | 2015-10-29 01:21:04 -0700 |
---|---|---|
committer | vjpai <vpai@google.com> | 2015-10-29 01:21:04 -0700 |
commit | 119c103ab00f309a66de6f1cb78c648eb3c4e2cc (patch) | |
tree | 2c75fd44bc3cefc53c22121f0601f57b408a569f /src | |
parent | 754751e3c60d416beb92938d7d453b23fa57dd7e (diff) |
Split up into a new service proto, use proper service suffix, add a
reset option to the mark, create a closed loop config params (empty
message) for consistency with other tests.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/support/histogram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/histogram.c b/src/core/support/histogram.c index 8a1a9d9233..77b48af996 100644 --- a/src/core/support/histogram.c +++ b/src/core/support/histogram.c @@ -125,7 +125,7 @@ void gpr_histogram_add(gpr_histogram *h, double x) { h->buckets[bucket_for(h, x)]++; } -int gpr_histogram_merge(gpr_histogram *dst, gpr_histogram *src) { +int gpr_histogram_merge(gpr_histogram *dst, const gpr_histogram *src) { if ((dst->num_buckets != src->num_buckets) || (dst->multiplier != src->multiplier)) { /* Fail because these histograms don't match */ |