From: antirez Date: Fri, 16 Sep 2011 10:36:17 +0000 (+0200) Subject: fixed flushAppendOnlyFile() function prototype to reflect the new implementation... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/a3fcd6bc21ec16f227bd98f7155372b2fd80de11?ds=sidebyside;hp=-c fixed flushAppendOnlyFile() function prototype to reflect the new implementation, fixing compilation. --- a3fcd6bc21ec16f227bd98f7155372b2fd80de11 diff --git a/src/redis.h b/src/redis.h index d431c7e4..e754918d 100644 --- a/src/redis.h +++ b/src/redis.h @@ -871,7 +871,7 @@ int rdbSaveType(FILE *fp, unsigned char type); int rdbSaveLen(FILE *fp, uint32_t len); /* AOF persistence */ -void flushAppendOnlyFile(void); +void flushAppendOnlyFile(int force); void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc); void aofRemoveTempFile(pid_t childpid); int rewriteAppendOnlyFileBackground(void);