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 4c2d5f0980
commit 79b9ec53d1

View File

@ -797,7 +797,7 @@ void backgroundSaveDoneHandler(int statloc);
int getObjectSaveType(robj *o); int getObjectSaveType(robj *o);
/* AOF persistence */ /* AOF persistence */
void flushAppendOnlyFile(void); void flushAppendOnlyFile(int force);
void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc); void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc);
void aofRemoveTempFile(pid_t childpid); void aofRemoveTempFile(pid_t childpid);
int rewriteAppendOnlyFileBackground(void); int rewriteAppendOnlyFileBackground(void);