ITS#10296 lmdb: fix typo in prev commit

This commit is contained in:
Howard Chu 2025-02-19 09:15:27 +00:00
parent 96bffc9202
commit ac89f42433

View File

@ -129,7 +129,7 @@ typedef SSIZE_T ssize_t;
#elif defined(__APPLE__) || defined (BSD) || defined(__FreeBSD_kernel__)
# define MDB_USE_POSIX_SEM 1
# if defined(__APPLE__)
# define MDB_FDATASYNC fcntl(fd, F_FULLSYNC)
# define MDB_FDATASYNC fcntl(fd, F_FULLFSYNC)
# else
# define MDB_FDATASYNC fsync
# endif