From 056c2acaea190c2cf55d78c9aac69ac166b23f45 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 16 Sep 2011 12:11:48 +0200 Subject: [PATCH] Fixed typo preventing compilation --- src/aof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aof.c b/src/aof.c index 9d094eb2..85f97a84 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"