]> git.saurik.com Git - redis.git/blobdiff - dict.h
SUNION, SUNIONSTORE, Initial work on non blocking replication
[redis.git] / dict.h
diff --git a/dict.h b/dict.h
index ae634b4938d2a070d7579fe6f655cf980a7d8942..2e58fd845ab8e0558e9547c8c11a715c9e2d58bd 100644 (file)
--- a/dict.h
+++ b/dict.h
@@ -107,8 +107,8 @@ typedef struct dictIterator {
 
 #define dictGetEntryKey(he) ((he)->key)
 #define dictGetEntryVal(he) ((he)->val)
-#define dictGetHashTableSize(ht) ((ht)->size)
-#define dictGetHashTableUsed(ht) ((ht)->used)
+#define dictSlots(ht) ((ht)->size)
+#define dictSize(ht) ((ht)->used)
 
 /* API */
 dict *dictCreate(dictType *type, void *privDataPtr);