mirror of
https://github.com/fluencelabs/redis
synced 2025-06-14 09:41:21 +00:00
dict.c API names modified to be more coincise and consistent.
This commit is contained in:
@ -465,7 +465,7 @@ robj *objectCommandLookup(redisClient *c, robj *key) {
|
||||
dictEntry *de;
|
||||
|
||||
if ((de = dictFind(c->db->dict,key->ptr)) == NULL) return NULL;
|
||||
return (robj*) dictGetEntryVal(de);
|
||||
return (robj*) dictGetVal(de);
|
||||
}
|
||||
|
||||
robj *objectCommandLookupOrReply(redisClient *c, robj *key, robj *reply) {
|
||||
|
Reference in New Issue
Block a user