From a14d6bcb11028db97193b8e707824845a085b96c Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Thu, 6 May 2021 17:03:10 +0300 Subject: [PATCH] mdbx: fix mis-defined `MDBX_FORCE_ASSERTIONS`. Change-Id: I6f7ad4fdd6aca99a4f908d634af0015a6e95c0d1 --- src/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.h b/src/options.h index d76b8c44..c54c7b55 100644 --- a/src/options.h +++ b/src/options.h @@ -154,7 +154,7 @@ /** Forces assertion checking */ #ifndef MDBX_FORCE_ASSERTIONS -#define MDBX_FORCE_ASSERTIONS 1 +#define MDBX_FORCE_ASSERTIONS 0 #elif !(MDBX_FORCE_ASSERTIONS == 0 || MDBX_FORCE_ASSERTIONS == 1) #error MDBX_FORCE_ASSERTIONS must be defined as 0 or 1 #endif /* MDBX_FORCE_ASSERTIONS */