Merge 28be13ec99 into merged_master (Bitcoin PR bitcoin/bitcoin#25739)

This commit is contained in:
Byron Hambly 2024-10-24 13:23:53 +02:00
commit b7cf83d442

View file

@ -49,7 +49,7 @@ constexpr const int kDefaultMmapLimit = (sizeof(void*) >= 8) ? 4096 : 0;
int g_mmap_limit = kDefaultMmapLimit;
// Common flags defined for all posix open operations
#if defined(HAVE_O_CLOEXEC)
#if HAVE_O_CLOEXEC
constexpr const int kOpenBaseFlags = O_CLOEXEC;
#else
constexpr const int kOpenBaseFlags = 0;