]> git.saurik.com Git - redis.git/commitdiff
Fixed typo preventing compilation
authorantirez <antirez@gmail.com>
Fri, 16 Sep 2011 10:11:48 +0000 (12:11 +0200)
committerantirez <antirez@gmail.com>
Fri, 16 Sep 2011 10:11:48 +0000 (12:11 +0200)
src/aof.c

index bc80dac9bb8301875b9392374c9cc677d5002242..ffd468699b39aaba206df21382a28e06813b4236 100644 (file)
--- a/src/aof.c
+++ b/src/aof.c
@@ -12,7 +12,7 @@
 void aofUpdateCurrentSize(void);
 
 void aof_background_fsync(int fd) {
-    bioCreateBackgroundJob(REDIS_BIO_AOF_FSYNC,(void*)(long)fd,NULL);
+    bioCreateBackgroundJob(REDIS_BIO_AOF_FSYNC,(void*)(long)fd,NULL,NULL);
 }
 
 /* Called when the user switches from "appendonly yes" to "appendonly no"