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 db3c2a4fb4
commit a3fcd6bc21

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