Commit bc5de33c authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

close[t:4325] Fix #4325 (use {{{int}}} instead of {{{u_int32_t}}}).

git-svn-id: file:///svn/toku/tokudb@38440 c7de825b-a66e-492c-adef-691d508d4ae1
parent 2eb3bf57
......@@ -2884,7 +2884,7 @@ toku_txn_stat (DB_TXN *txn, struct txn_stat **txn_stat) {
static int
locked_txn_stat (DB_TXN *txn, struct txn_stat **txn_stat) {
toku_ydb_lock(); u_int32_t r = toku_txn_stat(txn, txn_stat); toku_ydb_unlock(); return r;
toku_ydb_lock(); int r = toku_txn_stat(txn, txn_stat); toku_ydb_unlock(); return r;
}
static int
......
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