Fix redis-benchmark sds binding.

Same as redis-cli, now redis-benchmark requires to use hiredis sds copy
since it is different compared to the memory optimized fork of Redis
sds.
This commit is contained in:
antirez
2015-07-14 17:33:30 +02:00
parent a76b380e06
commit 056a0ca199
2 changed files with 2 additions and 2 deletions

View File

@ -40,9 +40,9 @@
#include <signal.h>
#include <assert.h>
#include <sds.h> /* Use hiredis sds. */
#include "ae.h"
#include "hiredis.h"
#include "sds.h"
#include "adlist.h"
#include "zmalloc.h"