summaryrefslogtreecommitdiff
path: root/src/include/log.h
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2015-04-27 10:02:39 -0400
committerSusan LoVerso <sue@wiredtiger.com>2015-04-27 10:02:39 -0400
commit7ad8058797330fcf3f632271565151cbb4ada661 (patch)
treeb1ccceaad24690bc3b310d8a18d4aab1bb6ded68 /src/include/log.h
parent5991f88fefb1a5989f9b3633b7cd5c0dc1d57854 (diff)
downloadmongo-7ad8058797330fcf3f632271565151cbb4ada661.tar.gz
Change LOG_CMP to WT_LOG_CMP. WT-1906
Diffstat (limited to 'src/include/log.h')
-rw-r--r--src/include/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/log.h b/src/include/log.h
index ebe3a00b19f..f4f7361b53f 100644
--- a/src/include/log.h
+++ b/src/include/log.h
@@ -51,7 +51,7 @@
* Compare 2 LSNs, return -1 if lsn0 < lsn1, 0 if lsn0 == lsn1
* and 1 if lsn0 > lsn1.
*/
-#define LOG_CMP(lsn1, lsn2) \
+#define WT_LOG_CMP(lsn1, lsn2) \
((lsn1)->file != (lsn2)->file ? \
((lsn1)->file < (lsn2)->file ? -1 : 1) : \
((lsn1)->offset != (lsn2)->offset ? \