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:
authorRemi Collet <fedora@famillecollet.com>2016-12-21 11:23:56 +0300
committerRemi Collet <fedora@famillecollet.com>2016-12-21 11:28:34 +0300
commit1435d4540a21df8f02f11466bdfc0d3ee0485f3e (patch)
tree4b8f5b2a95af4d7cde29a8d1f3242ce544d78f47 /cluster_library.h
parentc9825cc8c8d444446c868837e1a786d123e10fd3 (diff)
change redis_serialize to accept strlen_t
Diffstat (limited to 'cluster_library.h')
-rw-r--r--cluster_library.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cluster_library.h b/cluster_library.h
index 90eb9720..3a58f13a 100644
--- a/cluster_library.h
+++ b/cluster_library.h
@@ -333,7 +333,7 @@ void cluster_free_reply(clusterReply *reply, int free_data);
HashTable *cluster_dist_create();
void cluster_dist_free(HashTable *ht);
int cluster_dist_add_key(redisCluster *c, HashTable *ht, char *key,
- int key_len, clusterKeyVal **kv);
+ strlen_t key_len, clusterKeyVal **kv);
void cluster_dist_add_val(redisCluster *c, clusterKeyVal *kv, zval *val
TSRMLS_DC);