From 79b9ec53d16c13d55063d31a1d13fee899c3f40b Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 16 Sep 2011 12:36:17 +0200 Subject: [PATCH] fixed flushAppendOnlyFile() function prototype to reflect the new implementation, fixing compilation. --- src/redis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.h b/src/redis.h index 7c0da22e..f331b281 100644 --- a/src/redis.h +++ b/src/redis.h @@ -797,7 +797,7 @@ void backgroundSaveDoneHandler(int statloc); int getObjectSaveType(robj *o); /* 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);