summaryrefslogtreecommitdiff
path: root/src/txn
diff options
context:
space:
mode:
Diffstat (limited to 'src/txn')
-rw-r--r--src/txn/txn_log.c2
-rw-r--r--src/txn/txn_recover.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/txn/txn_log.c b/src/txn/txn_log.c
index 32014eba8dd..7265d9de057 100644
--- a/src/txn/txn_log.c
+++ b/src/txn/txn_log.c
@@ -426,7 +426,7 @@ __txn_printlog(
out = cookie;
- p = LOG_SKIP_HEADER(logrec->data, 0);
+ p = LOG_SKIP_HEADER(logrec->data);
end = (const uint8_t *)logrec->data + logrec->size;
/* First, peek at the log record type. */
diff --git a/src/txn/txn_recover.c b/src/txn/txn_recover.c
index 5d7de51cade..b555e6df3f9 100644
--- a/src/txn/txn_recover.c
+++ b/src/txn/txn_recover.c
@@ -270,7 +270,7 @@ __txn_log_recover(
uint32_t rectype;
r = cookie;
- p = LOG_SKIP_HEADER(logrec->data, 0);
+ p = LOG_SKIP_HEADER(logrec->data);
end = (const uint8_t *)logrec->data + logrec->size;
/* First, peek at the log record type. */