aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 22:07:58 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 22:07:58 -0700
commit5cc1e2ec4b0e6a100dab285c74aed8233add8776 (patch)
tree7744e9f83f5782813146b3563b533174f64f9932
parentc17fecd224fa2da3d2b0fc27c1236431fc1bf193 (diff)
Fixing PHP.
-rw-r--r--src/php/ext/grpc/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/ext/grpc/channel.c b/src/php/ext/grpc/channel.c
index 080a939662..a4313b6bd4 100644
--- a/src/php/ext/grpc/channel.c
+++ b/src/php/ext/grpc/channel.c
@@ -148,7 +148,7 @@ PHP_METHOD(Channel, __construct) {
return;
}
if (args_array == NULL) {
- channel->wrapped = grpc_insecure_channel_create(target, NULL, NULL, NULL);
+ channel->wrapped = grpc_insecure_channel_create(target, NULL, NULL);
} else {
array_hash = Z_ARRVAL_P(args_array);
if (zend_hash_find(array_hash, "credentials", sizeof("credentials"),