mdbx: minor fix non-ascii comment.

Change-Id: Ie9a38e2bef3c8ef91adc3f45818096658c84cd34
This commit is contained in:
Leo Yuriev 2016-04-17 20:21:53 +03:00
parent ebf1ae1bdc
commit bf7f3814f9

4
mdb.c
View File

@ -2114,7 +2114,7 @@ mdb_page_alloc(MDB_cursor *mc, int num, MDB_page **mp, int flags)
goto fail;
}
for (;;) { /* oomkick retry loop */
for (;;) { /* oom-kick retry loop */
found_old = 0;
for (op = MDB_FIRST;; op = (flags & MDB_LIFORECLAIM) ? MDB_PREV : MDB_NEXT) {
MDB_val key, data;
@ -3462,7 +3462,7 @@ again:
/* LY: need more just a txn-id for save page list. */
rc = mdb_page_alloc(&mc, 0, NULL, MDB_ALLOC_GC);
if (likely(rc == 0))
/* LY: ок, reclaimed from freedb. */
/* LY: ok, reclaimed from freedb. */
continue;
if (unlikely(rc != MDB_NOTFOUND))
/* LY: other troubles... */