mirror of
https://github.com/isar/libmdbx.git
synced 2025-11-07 07:18:56 +08:00
mdbx: исправление опечатки 0x%u в логировании.
This commit is contained in:
@@ -1222,8 +1222,8 @@ int txn_renew(MDBX_txn *txn, unsigned flags) {
|
||||
}
|
||||
|
||||
if (unlikely(txn->dbs[FREE_DBI].flags != MDBX_INTEGERKEY)) {
|
||||
ERROR("unexpected/invalid db-flags 0x%u for GC/FreeDB",
|
||||
txn->dbs[FREE_DBI].flags);
|
||||
ERROR("unexpected/invalid db-flags 0x%x for %s", txn->dbs[FREE_DBI].flags,
|
||||
"GC/FreeDB");
|
||||
rc = MDBX_INCOMPATIBLE;
|
||||
goto bailout;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user