diff options
author | Stanley Cheung <stanleycheung@google.com> | 2016-07-29 13:41:22 -0700 |
---|---|---|
committer | Stanley Cheung <stanleycheung@google.com> | 2016-07-29 13:41:22 -0700 |
commit | c1f25fb199a076b129dc283f51acbe1e1e7ba60c (patch) | |
tree | 27fff7a3715526f0f60feca559501d191531d2fe | |
parent | c70f2f76faba2a52286e033b9f7d44aca290b0ec (diff) |
php: missed a macro;
-rw-r--r-- | src/php/ext/grpc/channel.c | 2 |
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); |