aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/load_reporting
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-09-17 23:43:30 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2017-09-17 23:55:58 -0700
commit9eb8672bbe02dc47f2f667b99670b215d7431ef0 (patch)
tree0576f784c49829f16ff7d1cc4444f805e7598f1c /src/core/ext/filters/load_reporting
parentc8cbddae0be904713bcf39d1363b27134adbfc3b (diff)
Removing deprecated string to char * conversions
Diffstat (limited to 'src/core/ext/filters/load_reporting')
-rw-r--r--src/core/ext/filters/load_reporting/server_load_reporting_plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ext/filters/load_reporting/server_load_reporting_plugin.c b/src/core/ext/filters/load_reporting/server_load_reporting_plugin.c
index f56afd27d2..2486ead427 100644
--- a/src/core/ext/filters/load_reporting/server_load_reporting_plugin.c
+++ b/src/core/ext/filters/load_reporting/server_load_reporting_plugin.c
@@ -55,7 +55,8 @@ static bool maybe_add_server_load_reporting_filter(
}
grpc_arg grpc_load_reporting_enable_arg() {
- return grpc_channel_arg_integer_create(GRPC_ARG_ENABLE_LOAD_REPORTING, 1);
+ return grpc_channel_arg_integer_create((char *)GRPC_ARG_ENABLE_LOAD_REPORTING,
+ 1);
}
/* Plugin registration */