1
0
mirror of https://github.com/fluencelabs/redis synced 2025-04-05 01:01:04 +00:00

Remove ziplist compiler warnings

Only happen when compiled with the test define.
This commit is contained in:
Matt Stancliff 2014-11-08 10:16:54 -05:00
parent 27937c2821
commit 8380655e85

@ -1028,10 +1028,12 @@ void pop(unsigned char *zl, int where) {
else else
printf("Pop tail: "); printf("Pop tail: ");
if (vstr) if (vstr) {
if (vlen && fwrite(vstr,vlen,1,stdout) == 0) perror("fwrite"); if (vlen && fwrite(vstr,vlen,1,stdout) == 0) perror("fwrite");
else }
else {
printf("%lld", vlong); printf("%lld", vlong);
}
printf("\n"); printf("\n");
ziplistDeleteRange(zl,-1,1); ziplistDeleteRange(zl,-1,1);
@ -1368,7 +1370,7 @@ int main(int argc, char **argv) {
{ {
char v[3][257]; char v[3][257];
zlentry e[3]; zlentry e[3];
int i; size_t i;
for (i = 0; i < (sizeof(v)/sizeof(v[0])); i++) { for (i = 0; i < (sizeof(v)/sizeof(v[0])); i++) {
memset(v[i], 'a' + i, sizeof(v[0])); memset(v[i], 'a' + i, sizeof(v[0]));
@ -1464,7 +1466,7 @@ int main(int argc, char **argv) {
for (i = 0; i < 20000; i++) { for (i = 0; i < 20000; i++) {
zl = ziplistNew(); zl = ziplistNew();
ref = listCreate(); ref = listCreate();
listSetFreeMethod(ref,sdsfree); listSetFreeMethod(ref,(void (*)(void*))sdsfree);
len = rand() % 256; len = rand() % 256;
/* Create lists */ /* Create lists */