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-08 12:02:51 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-11-08 21:11:51 +0300
commit04a7327af877ef89cfd46c7a6aa6cc335e0d7270 (patch)
tree99224e9697b2db528b16858c1233e14bcf6c5221 /redis_array.h
parenta3799e506f4871b5f234d15b8e3895d4605719e3 (diff)
WIP: php7 compatibility
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.h b/redis_array.h
index 7a318b67..013938c3 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -50,7 +50,7 @@ typedef struct RedisArray_ {
zend_bool pconnect; /* should we use pconnect */
zval *z_fun; /* key extractor, callable */
zval *z_dist; /* key distributor, callable */
- zval *z_pure_cmds; /* hash table */
+ zval z_pure_cmds; /* hash table */
double connect_timeout; /* socket connect timeout */
struct RedisArray_ *prev;