summaryrefslogtreecommitdiff
path: root/src/include/txn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/txn.h')
-rw-r--r--src/include/txn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/txn.h b/src/include/txn.h
index f44a02cc332..5f56ba4b03c 100644
--- a/src/include/txn.h
+++ b/src/include/txn.h
@@ -21,7 +21,7 @@
((t1) <= (t2))
#define WT_TXNID_LT(t1, t2) \
- ((t1) != (t2) && WT_TXNID_LE(t1, t2))
+ ((t1) < (t2))
#define WT_SESSION_TXN_STATE(s) (&S2C(s)->txn_global.states[(s)->id])