test: fix logging va_copy() bug.

This commit is contained in:
Leo Yuriev
2017-05-17 15:46:44 +03:00
parent 6d7bfeb87a
commit bfa3e864b6
3 changed files with 28 additions and 15 deletions

View File

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