Skip to content

Commit

Permalink
more fixes for dict.c and the 150 million keys limit
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Apr 30, 2009
1 parent f2923be commit 71aee3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dict.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 71aee3e

Please sign in to comment.