summaryrefslogtreecommitdiff
path: root/src/redis-cli.c
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2015-04-09 10:37:01 +0300
committerantirez <antirez@gmail.com>2015-07-14 17:17:06 +0200
commitf15df8ba5db09bdf4be58c53930799d82120cc34 (patch)
tree3490e60e235706ccf68a4daec54f3fc7a37e9490 /src/redis-cli.c
parent0f64080dcb9f44c923379f909aae82f6c2b2ed19 (diff)
downloadredis-f15df8ba5db09bdf4be58c53930799d82120cc34.tar.gz
sds size classes - memory optimization
Diffstat (limited to 'src/redis-cli.c')
-rw-r--r--src/redis-cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c
index acf7c98b9..64bf210bf 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -46,8 +46,8 @@
#include <limits.h>
#include <math.h>
-#include "hiredis.h"
-#include "sds.h"
+#include <hiredis.h>
+#include <sds.h> /* use sds.h from hiredis, so that only one set of sds functions will be present in the binary */
#include "zmalloc.h"
#include "linenoise.h"
#include "help.h"