1
0
Fork 0

fixed type

This commit is contained in:
Frank Celler 2011-11-28 16:20:46 +01:00
parent d9e7e68440
commit db1ed98e71
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ avocdb_SOURCES = \
Basics/Initialise.cpp \
Basics/json.c \
Basics/locks-posix.c \
Basics/locks-macos.c \
Basics/Logger.cpp \
Basics/LoggerData.cpp \
Basics/LoggerInfo.cpp \

View File

@ -370,7 +370,7 @@ bool TRI_msync (int fd, char const* begin, char const* end) {
#ifdef __APPLE__
if (res == 0) {
res = = fcntl(fd, F_FULLFSYNC, 0);
res = fcntl(fd, F_FULLFSYNC, 0);
}
#endif