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:
authorJan-E <github@ehrhardt.nl>2015-09-09 03:34:53 +0300
committerSean DuBois <sean@siobud.com>2015-09-09 05:40:38 +0300
commit4d66e3d4c06b9f90430f701baa179d73d805a267 (patch)
treefdff41dfed3a7671f2766dc3d7b847293e2abb34 /redis_array.c
parentdaa4d9f23eab8505bea1ba0d38ced433cd3037a8 (diff)
Fix incompatible types
Diffstat (limited to 'redis_array.c')
-rw-r--r--redis_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.c b/redis_array.c
index 9298040c..e0b12d78 100644
--- a/redis_array.c
+++ b/redis_array.c
@@ -952,7 +952,7 @@ PHP_METHOD(RedisArray, mset)
zend_string *key_zstr;
unsigned int key_len, free_idx = 0;
int type, *key_lens;
- unsigned long idx;
+ zend_ulong idx;
/* Multi/exec support */
HANDLE_MULTI_EXEC("MSET");