aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/ext
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 19:41:20 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2015-08-25 19:41:20 -0700
commitc17fecd224fa2da3d2b0fc27c1236431fc1bf193 (patch)
tree2548bf0308bf4e91bd42a568419fe9b3186def2a /src/php/ext
parentc5b570f97efb29db5b624e2dc360aa7e6b03780f (diff)
Fixing tests.
Diffstat (limited to 'src/php/ext')
-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 c92edaff6e..080a939662 100644
--- a/src/php/ext/grpc/channel.c
+++ b/src/php/ext/grpc/channel.c
@@ -169,7 +169,7 @@ PHP_METHOD(Channel, __construct) {
} else {
gpr_log(GPR_DEBUG, "Initialized secure channel");
channel->wrapped =
- grpc_secure_channel_create(creds->wrapped, target, &args);
+ grpc_secure_channel_create(creds->wrapped, target, &args, NULL);
}
efree(args.args);
}