deps/hiredis updated to latest version.

Close #3687.
This commit is contained in:
antirez
2016-12-21 12:11:56 +01:00
parent 6549c6cfaf
commit b4f3c5a499
34 changed files with 2393 additions and 817 deletions

View File

@ -57,7 +57,7 @@ int main(int argc, char **argv) {
for (j = 0; j < 10; j++) {
char buf[64];
snprintf(buf,64,"%d",j);
snprintf(buf,64,"%u",j);
reply = redisCommand(c,"LPUSH mylist element-%s", buf);
freeReplyObject(reply);
}