summaryrefslogtreecommitdiff
path: root/src/dict.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-08-19 14:54:31 +0200
committerantirez <antirez@gmail.com>2013-08-19 15:01:21 +0200
commit1c75408457841d94b2e9f6730861516555796341 (patch)
tree3b45f50e54aeac18de9ec76ca54e5e41d9887bb7 /src/dict.c
parentca294c6b1e515a7da42f8106ed4e596e649165ba (diff)
downloadredis-1c75408457841d94b2e9f6730861516555796341.tar.gz
assert.h replaced with redisassert.h when appropriate.
Also a warning was suppressed by including unistd.h in redisassert.h (needed for _exit()).
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dict.c b/src/dict.c
index ad95d7498..dd4156d2f 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -39,13 +39,13 @@
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
-#include <assert.h>
#include <limits.h>
#include <sys/time.h>
#include <ctype.h>
#include "dict.h"
#include "zmalloc.h"
+#include "redisassert.h"
/* Using dictEnableResize() / dictDisableResize() we make possible to
* enable/disable resizing of the hash table as needed. This is very important