aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext/channel.cc
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 17:47:55 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 17:47:55 -0700
commitc5b570f97efb29db5b624e2dc360aa7e6b03780f (patch)
treee621698141a557f3657b745f73bd6d8dd92826c1 /src/node/ext/channel.cc
parent8dbefbee0192dbb3dbf095e18ba4c72ae35922c6 (diff)
Adding void* at then end of security related method in order to have a stable ABI.
Diffstat (limited to 'src/node/ext/channel.cc')
-rw-r--r--src/node/ext/channel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/ext/channel.cc b/src/node/ext/channel.cc
index a61c830099..9aed96bbf5 100644
--- a/src/node/ext/channel.cc
+++ b/src/node/ext/channel.cc
@@ -161,7 +161,7 @@ NAN_METHOD(Channel::New) {
NULL);
} else {
wrapped_channel =
- grpc_secure_channel_create(creds, *host, channel_args_ptr);
+ grpc_secure_channel_create(creds, *host, channel_args_ptr, NULL);
}
if (channel_args_ptr != NULL) {
free(channel_args_ptr->args);