]> git.saurik.com Git - redis.git/blobdiff - src/dict.c
32bit build fixed, broken by a previous commit fixing build on Solaris
[redis.git] / src / dict.c
index 11962f7c4579622f62b3e3d2eaca8c1f951b31fb..a573bcd6e3575477f1e58c67811b46122972de88 100644 (file)
@@ -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:
  *