aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/ext/grpc/rb_channel.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-13 11:13:42 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-13 11:13:42 -0800
commitb5dcec5a2e917aebd0d59772ee4aa6737064494e (patch)
treed2b8011a5eaec439677d31e4a6385d6aef1e3c5c /src/ruby/ext/grpc/rb_channel.c
parentd8532af01c00ea46431e21c6000a5f7fe44110ca (diff)
clang-format codebase
Diffstat (limited to 'src/ruby/ext/grpc/rb_channel.c')
-rw-r--r--src/ruby/ext/grpc/rb_channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ruby/ext/grpc/rb_channel.c b/src/ruby/ext/grpc/rb_channel.c
index d951847662..c0187d2d11 100644
--- a/src/ruby/ext/grpc/rb_channel.c
+++ b/src/ruby/ext/grpc/rb_channel.c
@@ -137,7 +137,7 @@ static VALUE grpc_rb_channel_init(int argc, VALUE *argv, VALUE self) {
ch = grpc_secure_channel_create(creds, target_chars, &args);
}
if (args.args != NULL) {
- xfree(args.args); /* Allocated by grpc_rb_hash_convert_to_channel_args */
+ xfree(args.args); /* Allocated by grpc_rb_hash_convert_to_channel_args */
}
if (ch == NULL) {
rb_raise(rb_eRuntimeError, "could not create an rpc channel to target:%s",
@@ -256,7 +256,7 @@ void Init_google_rpc_channel() {
}
/* Gets the wrapped channel from the ruby wrapper */
-grpc_channel* grpc_rb_get_wrapped_channel(VALUE v) {
+grpc_channel *grpc_rb_get_wrapped_channel(VALUE v) {
grpc_rb_channel *wrapper = NULL;
Data_Get_Struct(v, grpc_rb_channel, wrapper);
return wrapper->wrapped;