Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-11-23 00:12:35 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-11-23 00:12:35 +0300
commit6e455e2e17ccf22ea18d5bce93f64f58bd59c47d (patch)
tree80c562dac6b14b51d373ac10bc2a42fc853735da /cluster_library.c
parent72749916140e8a0480efdea60c457f502885e6c0 (diff)
Fix build warning for PHP 5
Diffstat (limited to 'cluster_library.c')
-rw-r--r--cluster_library.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cluster_library.c b/cluster_library.c
index 3dfcbc9d..1f6d4160 100644
--- a/cluster_library.c
+++ b/cluster_library.c
@@ -1385,7 +1385,7 @@ PHP_REDIS_API short cluster_send_command(redisCluster *c, short slot, const char
long msstart;
if (!SLOT(c, slot)) {
- zend_throw_exception_ex(redis_cluster_exception_ce, 0,
+ zend_throw_exception_ex(redis_cluster_exception_ce, 0 TSRMLS_CC,
"The slot %d is not covered by any node in this cluster", slot);
return -1;
}