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>2016-11-09 11:44:11 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-11-09 22:03:36 +0300
commit5f15ce222f6966d4dfdf326f2c688ab38baed738 (patch)
tree74357df6783527fc360d86024a9bf667cb9a70d5 /redis_array.h
parentbba159eee97b183184f53d879ce7a53eea518a9b (diff)
WIP: php7 compatibility
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis_array.h b/redis_array.h
index 013938c3..b9593f0c 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -48,8 +48,8 @@ typedef struct RedisArray_ {
zend_bool index; /* use per-node index */
zend_bool auto_rehash; /* migrate keys on read operations */
zend_bool pconnect; /* should we use pconnect */
- zval *z_fun; /* key extractor, callable */
- zval *z_dist; /* key distributor, callable */
+ zval z_fun; /* key extractor, callable */
+ zval z_dist; /* key distributor, callable */
zval z_pure_cmds; /* hash table */
double connect_timeout; /* socket connect timeout */