From 10e3153091a1cbca99b7677d7d08461af80d4b58 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 5 Nov 2012 03:06:27 -0800 Subject: [PATCH] Cleanup. --- src/TransactionEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TransactionEngine.cpp b/src/TransactionEngine.cpp index 053502939..3c6789ce5 100644 --- a/src/TransactionEngine.cpp +++ b/src/TransactionEngine.cpp @@ -455,7 +455,7 @@ TER TransactionEngine::applyTransaction(const SerializedTransaction& txn, Transa terResult = terRETRY; } - if (tesSUCCESS == terResult || isTepPartial(terResult)) + if ((tesSUCCESS == terResult) || isTepPartial(terResult)) { // Transaction succeeded fully or (retries are not allowed and the transaction succeeded partially). Serializer m;