From: antirez Date: Fri, 16 Sep 2011 10:11:48 +0000 (+0200) Subject: Fixed typo preventing compilation X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/9a35eb22bfc9313d04598b8fc7ebb5ca9367d2de Fixed typo preventing compilation --- diff --git a/src/aof.c b/src/aof.c index bc80dac9..ffd46869 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"