diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-20 09:51:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-20 09:51:43 +0300 |
commit | 97a52219651508b12c40427d01fcfbd9ab206df0 (patch) | |
tree | 4ec5986e0b74a7c2c62c1a094e24c15ca18e315b /plugins/Dbx_mdbx | |
parent | 77ea5b95cd68a295068394e9d0c505f0b26221ba (diff) |
final fix for libmdbx problem with GC
Diffstat (limited to 'plugins/Dbx_mdbx')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp index 93463f9850..9cbbf2656d 100644 --- a/plugins/Dbx_mdbx/src/dbintf.cpp +++ b/plugins/Dbx_mdbx/src/dbintf.cpp @@ -239,11 +239,11 @@ void CDbxMDBX::SetCacheSafetyMode(BOOL bIsSet) static void assert_func(const MDBX_env*, const char *msg, const char *function, unsigned line)
{
-/* Netlib_Logf(nullptr, "MDBX: assertion failed (%s, %d): %s", function, line, msg);
+ Netlib_Logf(nullptr, "MDBX: assertion failed (%s, %d): %s", function, line, msg);
#if defined(_DEBUG)
_wassert(_A2T(msg), _A2T(function), line);
- #endif */
+ #endif
}
int CDbxMDBX::Map()
|