]> git.saurik.com Git - redis.git/commitdiff
fixed flushAppendOnlyFile() function prototype to reflect the new implementation...
authorantirez <antirez@gmail.com>
Fri, 16 Sep 2011 10:36:17 +0000 (12:36 +0200)
committerantirez <antirez@gmail.com>
Fri, 16 Sep 2011 10:36:17 +0000 (12:36 +0200)
src/redis.h

index d431c7e4d63d5a807bc41963fa182ae14039a040..e754918deabe296cb89eeef3989db94e50afee52 100644 (file)
@@ -871,7 +871,7 @@ int rdbSaveType(FILE *fp, unsigned char type);
 int rdbSaveLen(FILE *fp, uint32_t len);
 
 /* AOF persistence */
 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);
 void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc);
 void aofRemoveTempFile(pid_t childpid);
 int rewriteAppendOnlyFileBackground(void);