Commit 3c9a75b5 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

refs #5153 fix another typo

git-svn-id: file:///svn/toku/tokudb@45065 c7de825b-a66e-492c-adef-691d508d4ae1
parent 324dcd7e
......@@ -48,7 +48,7 @@ toku_txn_release_locks(DB_TXN* txn) {
static void
toku_txn_destroy(DB_TXN *txn) {
int32_t open_txns = __sync_sub_and_fetch(&txn->mgrp->i->open_txns, 1);
invariant(open-txns >= 0);
invariant(open_txns >= 0);
toku_txn_destroy_txn(db_txn_struct_i(txn)->tokutxn);
toku_mutex_destroy(&db_txn_struct_i(txn)->txn_mutex);
#if !TOKUDB_NATIVE_H
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment