Commit 9762db25 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel
Browse files

#4685 fix icc compilation problem with hotindexer test refs[t:4685]

git-svn-id: file:///svn/toku/tokudb@41738 c7de825b-a66e-492c-adef-691d508d4ae1
parent 16bce93c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,9 +58,9 @@ live_add(struct live *live, TXNID xid, TOKUTXN_STATE state) {
    live->txns[live->o++] = (struct txn ) { xid, state };
}

static int
static TOKUTXN_STATE
lookup_txn_state(struct live *live, TXNID xid) {
    int r = TOKUTXN_RETIRED;
    TOKUTXN_STATE r = TOKUTXN_RETIRED;
    for (int i = 0; i < live->o; i++) {
        if (live->txns[i].xid == xid) {
            r = live->txns[i].state;