aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel/channel_args.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-10-24 11:12:05 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-10-24 11:12:05 -0700
commit557c990c36dd281812016ad81fa79309078e807d (patch)
tree716f5761931139666e2bc1fd0d9ee636d36053a1 /src/core/lib/channel/channel_args.c
parent93ca8071f2de5d04c5f602d028d155846d3db4d2 (diff)
clang-format
Diffstat (limited to 'src/core/lib/channel/channel_args.c')
-rw-r--r--src/core/lib/channel/channel_args.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/channel/channel_args.c b/src/core/lib/channel/channel_args.c
index 0270d6f224..cfc072c0b5 100644
--- a/src/core/lib/channel/channel_args.c
+++ b/src/core/lib/channel/channel_args.c
@@ -71,13 +71,13 @@ grpc_channel_args *grpc_channel_args_copy_and_add(const grpc_channel_args *src,
}
grpc_channel_args *grpc_channel_args_copy_and_remove(
- const grpc_channel_args *src, const char** to_remove,
+ const grpc_channel_args *src, const char **to_remove,
size_t num_to_remove) {
return grpc_channel_args_copy_and_add_and_remove(src, to_remove,
num_to_remove, NULL, 0);
}
-static bool should_remove_arg(const grpc_arg* arg, const char** to_remove,
+static bool should_remove_arg(const grpc_arg *arg, const char **to_remove,
size_t num_to_remove) {
for (size_t i = 0; i < num_to_remove; ++i) {
if (strcmp(arg->key, to_remove[i]) == 0) return true;
@@ -86,7 +86,7 @@ static bool should_remove_arg(const grpc_arg* arg, const char** to_remove,
}
grpc_channel_args *grpc_channel_args_copy_and_add_and_remove(
- const grpc_channel_args *src, const char** to_remove, size_t num_to_remove,
+ const grpc_channel_args *src, const char **to_remove, size_t num_to_remove,
const grpc_arg *to_add, size_t num_to_add) {
// Figure out how many args we'll be copying.
size_t num_args_to_copy = 0;