summaryrefslogtreecommitdiff
path: root/tools/mdbx_load/src/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mdbx_load/src/stdafx.h')
-rw-r--r--tools/mdbx_load/src/stdafx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mdbx_load/src/stdafx.h b/tools/mdbx_load/src/stdafx.h
index 670a09a54d..c31574e6bf 100644
--- a/tools/mdbx_load/src/stdafx.h
+++ b/tools/mdbx_load/src/stdafx.h
@@ -21,7 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <stdint.h>
#include <windows.h>
-#include "../../libs/libmdbx/src/src/bits.h"
+#define MDBX_TOOLS /* Avoid using internal mdbx_assert() */
+#include "../../libs/libmdbx/src/src/elements/internals.h"
#define CMP_UINT(x, y) { if ((x) != (y)) return (x) < (y) ? -1 : 1; }