mdbx: fix minor debug typo.

Change-Id: Ieffd3cea351681c1d5ccf93b12953eb0d8abb6b9
This commit is contained in:
Leonid Yuriev 2021-01-25 23:26:53 +03:00
parent 5f1b684719
commit 4fd23c4716

View File

@ -5611,7 +5611,7 @@ no_loose:
/* Stop reclaiming to avoid overflow the page list. /* Stop reclaiming to avoid overflow the page list.
* This is a rare case while search for a continuously multi-page region * This is a rare case while search for a continuously multi-page region
* in a large database. https://github.com/erthink/libmdbx/issues/123 */ * 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", "(chunk) -> %u",
MDBX_PNL_SIZE(txn->tw.reclaimed_pglist), gc_len, MDBX_PNL_SIZE(txn->tw.reclaimed_pglist), gc_len,
gc_len + MDBX_PNL_SIZE(txn->tw.reclaimed_pglist)); gc_len + MDBX_PNL_SIZE(txn->tw.reclaimed_pglist));