summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-16 12:11:48 +0200
committerantirez <antirez@gmail.com>2011-09-19 17:43:44 +0200
commit056c2acaea190c2cf55d78c9aac69ac166b23f45 (patch)
tree4ea8f5722a81c286c270cb003adb506f0dd159cf
parentf85c383b6c44557cd03e8dc27fb590a9267eb94a (diff)
downloadredis-056c2acaea190c2cf55d78c9aac69ac166b23f45.tar.gz
Fixed typo preventing compilation
-rw-r--r--src/aof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aof.c b/src/aof.c
index 9d094eb23..85f97a84c 100644
--- 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"