mdbx-test: fix warnings from MSVC 2013.

This commit is contained in:
Leonid Yuriev
2017-07-05 23:08:45 +03:00
parent a9faaaaf21
commit e3fcc4754e
3 changed files with 11 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ struct txn_deleter : public std::unary_function<void, MDBX_txn *> {
void operator()(MDBX_txn *txn) const {
int rc = mdbx_txn_abort(txn);
if (rc)
log_trouble(__func__, "mdbx_txn_abort()", rc);
log_trouble(mdbx_func_, "mdbx_txn_abort()", rc);
}
};