aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-09-30 10:56:53 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-09-30 10:56:53 -0700
commitafa8c1051ec585222e0bb02a63c6c25a4a3b4d3c (patch)
treeb011ee34c6eab2e67e6dcdf91178409c9fa1f3a7 /src/core/lib/channel
parent72d0b1615f5e1c19acf2b8f1b55339760f63e6ca (diff)
clang-format
Diffstat (limited to 'src/core/lib/channel')
-rw-r--r--src/core/lib/channel/message_size_filter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/lib/channel/message_size_filter.c b/src/core/lib/channel/message_size_filter.c
index 4efa6f07be..a54c424e1b 100644
--- a/src/core/lib/channel/message_size_filter.c
+++ b/src/core/lib/channel/message_size_filter.c
@@ -38,8 +38,8 @@
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
-#include "src/core/lib/channel/channel_args.h"
#include "src/core/ext/client_config/method_config.h"
+#include "src/core/lib/channel/channel_args.h"
#define DEFAULT_MAX_SEND_MESSAGE_LENGTH -1 // Unlimited.
// The protobuf library will (by default) start warning at 100 megs.
@@ -181,12 +181,12 @@ static void init_channel_elem(grpc_exec_ctx* exec_ctx,
}
}
// Get method config table from channel args.
- const grpc_arg *channel_arg = grpc_channel_args_find(
- args->channel_args, GRPC_ARG_SERVICE_CONFIG);
+ const grpc_arg* channel_arg =
+ grpc_channel_args_find(args->channel_args, GRPC_ARG_SERVICE_CONFIG);
if (channel_arg != NULL) {
GPR_ASSERT(channel_arg->type == GRPC_ARG_POINTER);
chand->method_config_table = grpc_method_config_table_ref(
- (grpc_method_config_table *)channel_arg->value.pointer.p);
+ (grpc_method_config_table*)channel_arg->value.pointer.p);
}
}