mirror of https://gitee.com/bigwinds/arangodb
fixed type
This commit is contained in:
parent
d9e7e68440
commit
db1ed98e71
|
@ -41,6 +41,7 @@ avocdb_SOURCES = \
|
||||||
Basics/Initialise.cpp \
|
Basics/Initialise.cpp \
|
||||||
Basics/json.c \
|
Basics/json.c \
|
||||||
Basics/locks-posix.c \
|
Basics/locks-posix.c \
|
||||||
|
Basics/locks-macos.c \
|
||||||
Basics/Logger.cpp \
|
Basics/Logger.cpp \
|
||||||
Basics/LoggerData.cpp \
|
Basics/LoggerData.cpp \
|
||||||
Basics/LoggerInfo.cpp \
|
Basics/LoggerInfo.cpp \
|
||||||
|
|
|
@ -370,7 +370,7 @@ bool TRI_msync (int fd, char const* begin, char const* end) {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
|
|
||||||
if (res == 0) {
|
if (res == 0) {
|
||||||
res = = fcntl(fd, F_FULLFSYNC, 0);
|
res = fcntl(fd, F_FULLFSYNC, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue