From 6380f2e844ffb20bedc3208ae378862711bb5c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Fri, 25 Mar 2022 13:25:37 +0300 Subject: [PATCH] mdbx: minor reformat (cosmetics). --- src/core.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core.c b/src/core.c index 3a3a0bf3..9cb5f513 100644 --- a/src/core.c +++ b/src/core.c @@ -7628,7 +7628,8 @@ static bool meta_checktxnid(const MDBX_env *env, const MDBX_meta *meta, } if (likely(freedb_root && freedb_mod_txnid)) { VALGRIND_MAKE_MEM_DEFINED(freedb_root, sizeof(freedb_root->mp_txnid)); - MDBX_ASAN_UNPOISON_MEMORY_REGION(freedb_root, sizeof(freedb_root->mp_txnid)); + MDBX_ASAN_UNPOISON_MEMORY_REGION(freedb_root, + sizeof(freedb_root->mp_txnid)); const txnid_t root_txnid = freedb_root->mp_txnid; if (unlikely(root_txnid != freedb_mod_txnid)) { if (report) @@ -7642,7 +7643,8 @@ static bool meta_checktxnid(const MDBX_env *env, const MDBX_meta *meta, } if (likely(maindb_root && maindb_mod_txnid)) { VALGRIND_MAKE_MEM_DEFINED(maindb_root, sizeof(maindb_root->mp_txnid)); - MDBX_ASAN_UNPOISON_MEMORY_REGION(maindb_root, sizeof(maindb_root->mp_txnid)); + MDBX_ASAN_UNPOISON_MEMORY_REGION(maindb_root, + sizeof(maindb_root->mp_txnid)); const txnid_t root_txnid = maindb_root->mp_txnid; if (unlikely(root_txnid != maindb_mod_txnid)) { if (report)