mdbx: fix minor typos.

Change-Id: Ib0c62eace9c766844a3f44124b525a3c6373c620
This commit is contained in:
Leonid Yuriev
2019-11-18 00:13:27 +03:00
parent 72c944974a
commit 497aa53e28
6 changed files with 7 additions and 7 deletions

View File

@@ -1166,7 +1166,7 @@ MDBX_INTERNAL_FUNC void mdbx_rthc_thread_dtor(void *ptr);
/* Internal error codes, not exposed outside libmdbx */
#define MDBX_NO_ROOT (MDBX_LAST_ERRCODE + 10)
/* Debuging output value of a cursor DBI: Negative in a sub-cursor. */
/* Debugging output value of a cursor DBI: Negative in a sub-cursor. */
#define DDBI(mc) \
(((mc)->mc_flags & C_SUB) ? -(int)(mc)->mc_dbi : (int)(mc)->mc_dbi)