mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 08:41:21 +00:00
No more trailing spaces in Redis source code.
This commit is contained in:
@ -214,7 +214,7 @@ void watchForKey(redisClient *c, robj *key) {
|
||||
}
|
||||
/* This key is not already watched in this DB. Let's add it */
|
||||
clients = dictFetchValue(c->db->watched_keys,key);
|
||||
if (!clients) {
|
||||
if (!clients) {
|
||||
clients = listCreate();
|
||||
dictAdd(c->db->watched_keys,key,clients);
|
||||
incrRefCount(key);
|
||||
|
Reference in New Issue
Block a user