Correct F_FULLSYNC -> F_FULLFSYNC
[fio.git] / io_u.c
diff --git a/io_u.c b/io_u.c
index 9d977d34e0c45017ddd36ed3bb357ce62886e040..806ceb77761f549a0fc82e5da557b8c83d43ecaa 100644 (file)
--- a/io_u.c
+++ b/io_u.c
@@ -2298,7 +2298,7 @@ int do_io_u_sync(const struct thread_data *td, struct io_u *io_u)
 
        if (io_u->ddir == DDIR_SYNC) {
 #ifdef CONFIG_FCNTL_SYNC
-               ret = fcntl(io_u->file->fd, F_FULLSYNC);
+               ret = fcntl(io_u->file->fd, F_FULLFSYNC);
 #else
                ret = fsync(io_u->file->fd);
 #endif