aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support/histogram_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/support/histogram_test.c')
-rw-r--r--test/core/support/histogram_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/support/histogram_test.c b/test/core/support/histogram_test.c
index 0ee5d5cdd1..86b7d599e6 100644
--- a/test/core/support/histogram_test.c
+++ b/test/core/support/histogram_test.c
@@ -25,7 +25,7 @@ static void test_no_op(void) {
gpr_histogram_destroy(gpr_histogram_create(0.01, 60e9));
}
-static void expect_percentile(gpr_histogram *h, double percentile,
+static void expect_percentile(gpr_histogram* h, double percentile,
double min_expect, double max_expect) {
double got = gpr_histogram_percentile(h, percentile);
gpr_log(GPR_INFO, "@%f%%, expect %f <= %f <= %f", percentile, min_expect, got,
@@ -35,7 +35,7 @@ static void expect_percentile(gpr_histogram *h, double percentile,
}
static void test_simple(void) {
- gpr_histogram *h;
+ gpr_histogram* h;
LOG_TEST("test_simple");
@@ -52,7 +52,7 @@ static void test_simple(void) {
}
static void test_percentile(void) {
- gpr_histogram *h;
+ gpr_histogram* h;
double last;
double i;
double cur;