X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/aaada3f962a9f87fb239e55e3d26c1e794d411d5..8fedd04dccd08e9a25652a22c2034d3f38f72d0f:/src/aof.c diff --git a/src/aof.c b/src/aof.c index dc806969..8f2dc96f 100644 --- a/src/aof.c +++ b/src/aof.c @@ -468,7 +468,7 @@ int rewriteAppendOnlyFile(char *filename) { /* Emit the SADDs needed to rebuild the set */ if (o->encoding == REDIS_ENCODING_INTSET) { int ii = 0; - long long llval; + int64_t llval; while(intsetGet(o->ptr,ii++,&llval)) { if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr; if (fwriteBulkObject(fp,&key) == 0) goto werr;