From 4fd23c4716d51780824133037c9ce156715deb93 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Mon, 25 Jan 2021 23:26:53 +0300 Subject: [PATCH] mdbx: fix minor debug typo. Change-Id: Ieffd3cea351681c1d5ccf93b12953eb0d8abb6b9 --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index e69289e9..6ffa5f93 100644 --- a/src/core.c +++ b/src/core.c @@ -5611,7 +5611,7 @@ no_loose: /* Stop reclaiming to avoid overflow the page list. * This is a rare case while search for a continuously multi-page region * in a large database. https://github.com/erthink/libmdbx/issues/123 */ - mdbx_debug("stop reclaiming to avoid PNL overflow: %u (curent) + %u " + mdbx_debug("stop reclaiming to avoid PNL overflow: %u (current) + %u " "(chunk) -> %u", MDBX_PNL_SIZE(txn->tw.reclaimed_pglist), gc_len, gc_len + MDBX_PNL_SIZE(txn->tw.reclaimed_pglist));