summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-16 12:36:17 +0200
committerantirez <antirez@gmail.com>2011-09-19 17:43:56 +0200
commit79b9ec53d16c13d55063d31a1d13fee899c3f40b (patch)
tree46b81217660550024ecf79659b0d9553afdbf039
parent4c2d5f0980ba0666e075684473d6f50689c078de (diff)
downloadredis-79b9ec53d16c13d55063d31a1d13fee899c3f40b.tar.gz
fixed flushAppendOnlyFile() function prototype to reflect the new implementation, fixing compilation.
-rw-r--r--src/redis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.h b/src/redis.h
index 7c0da22e0..f331b2814 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);