Commit 0f484d83 authored by antirez's avatar antirez
Browse files

Actually remove static from #3331.

I forgot -a when amending in the previous commit.
parent c0ca87dc
...@@ -1447,8 +1447,7 @@ int RM_ZsetScore(RedisModuleKey *key, RedisModuleString *ele, double *score) { ...@@ -1447,8 +1447,7 @@ int RM_ZsetScore(RedisModuleKey *key, RedisModuleString *ele, double *score) {
* Key API for Sorted Set iterator * Key API for Sorted Set iterator
* -------------------------------------------------------------------------- */ * -------------------------------------------------------------------------- */
static void zsetKeyReset(RedisModuleKey *key) void zsetKeyReset(RedisModuleKey *key) {
{
key->ztype = REDISMODULE_ZSET_RANGE_NONE; key->ztype = REDISMODULE_ZSET_RANGE_NONE;
key->zcurrent = NULL; key->zcurrent = NULL;
key->zer = 1; key->zer = 1;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment