Skip to content

Commit 71aee3e

Browse files
committed
more fixes for dict.c and the 150 million keys limit
1 parent f2923be commit 71aee3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dict.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static void _dictPanic(const char *fmt, ...)
6060

6161
/* ------------------------- Heap Management Wrappers------------------------ */
6262

63-
static void *_dictAlloc(int size)
63+
static void *_dictAlloc(size_t size)
6464
{
6565
void *p = zmalloc(size);
6666
if (p == NULL)

0 commit comments

Comments
 (0)