X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/c0ba9ebe13865189a3b21f7be8a910e349b59fda..846bcd9abe1d41fd6a7bb8c80267c221b145a7b7:/src/dict.c diff --git a/src/dict.c b/src/dict.c index 11962f7c..a573bcd6 100644 --- a/src/dict.c +++ b/src/dict.c @@ -274,7 +274,7 @@ int dictAdd(dict *d, void *key, void *val) * mainly in order to store non-pointers inside the hash value, example: * * entry = dictAddRaw(dict,mykey); - * if (entry != NULL) dictSetValSignedInteger(entry,1000); + * if (entry != NULL) dictSetSignedIntegerVal(entry,1000); * * Return values: *