From a3fcd6bc21ec16f227bd98f7155372b2fd80de11 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 d431c7e4..e754918d 100644 --- a/src/redis.h +++ b/src/redis.h @@ -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);