aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/surface
diff options
context:
space:
mode:
authorGravatar Soheil Hassas Yeganeh <soheil@google.com>2018-10-15 11:33:30 -0400
committerGravatar Soheil Hassas Yeganeh <soheil@google.com>2018-10-15 11:33:58 -0400
commit08ae060a445ae544eb58455e751eb2b77e70b65c (patch)
tree1e2f7fe871c476f9462f1fb8741f4d1d05ac1404 /src/core/lib/surface
parenta280d89937db5a2f14aa05642dccfd00131498cc (diff)
Fix formatting errors introduced in a280d899.
Diffstat (limited to 'src/core/lib/surface')
-rw-r--r--src/core/lib/surface/channel.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/lib/surface/channel.cc b/src/core/lib/surface/channel.cc
index 044241470b..d7095c24d4 100644
--- a/src/core/lib/surface/channel.cc
+++ b/src/core/lib/surface/channel.cc
@@ -337,9 +337,8 @@ grpc_call* grpc_channel_create_call(grpc_channel* channel,
grpc_call* call = grpc_channel_create_call_internal(
channel, parent_call, propagation_mask, cq, nullptr,
grpc_mdelem_create(GRPC_MDSTR_PATH, method, nullptr),
- host != nullptr
- ? grpc_mdelem_create(GRPC_MDSTR_AUTHORITY, *host, nullptr)
- : GRPC_MDNULL,
+ host != nullptr ? grpc_mdelem_create(GRPC_MDSTR_AUTHORITY, *host, nullptr)
+ : GRPC_MDNULL,
grpc_timespec_to_millis_round_up(deadline));
return call;
@@ -353,9 +352,8 @@ grpc_call* grpc_channel_create_pollset_set_call(
return grpc_channel_create_call_internal(
channel, parent_call, propagation_mask, nullptr, pollset_set,
grpc_mdelem_create(GRPC_MDSTR_PATH, method, nullptr),
- host != nullptr
- ? grpc_mdelem_create(GRPC_MDSTR_AUTHORITY, *host, nullptr)
- : GRPC_MDNULL,
+ host != nullptr ? grpc_mdelem_create(GRPC_MDSTR_AUTHORITY, *host, nullptr)
+ : GRPC_MDNULL,
deadline);
}