fixed flushAppendOnlyFile() function prototype to reflect the new implementation, fixing compilation.

This commit is contained in:
antirez 2011-09-16 12:36:17 +02:00
parent 5d02f830e6
commit 07978ceb03

View File

@ -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);