aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2016-07-29 13:41:22 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2016-07-29 13:41:22 -0700
commitc1f25fb199a076b129dc283f51acbe1e1e7ba60c (patch)
tree27fff7a3715526f0f60feca559501d191531d2fe
parentc70f2f76faba2a52286e033b9f7d44aca290b0ec (diff)
php: missed a macro;
-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 e96ead582f..b5a2c9f6ba 100644
--- a/src/php/ext/grpc/channel.c
+++ b/src/php/ext/grpc/channel.c
@@ -84,7 +84,7 @@ void php_grpc_read_args_array(zval *args_array,
array_hash = Z_ARRVAL_P(args_array);
if (!array_hash) {
zend_throw_exception(spl_ce_InvalidArgumentException,
- "array_hash is NULL", 1);
+ "array_hash is NULL", 1 TSRMLS_CC);
return;
}
args->num_args = zend_hash_num_elements(array_hash);