]> git.saurik.com Git - redis.git/blobdiff - dict.c
version incremented to 1.050 to distinguish from 1.001 stable and next stable version...
[redis.git] / dict.c
diff --git a/dict.c b/dict.c
index daaad2be1d3c1000899fc9efdee8870f0a7ad70b..7f05e3f50ea28f902680d1bd9e6e76c4eb2a8e3f 100644 (file)
--- a/dict.c
+++ b/dict.c
@@ -60,7 +60,7 @@ static void _dictPanic(const char *fmt, ...)
 
 /* ------------------------- Heap Management Wrappers------------------------ */
 
-static void *_dictAlloc(int size)
+static void *_dictAlloc(size_t size)
 {
     void *p = zmalloc(size);
     if (p == NULL)