diff options
author | Michael Cahill <mjc@wiredtiger.com> | 2014-12-24 09:50:28 +1100 |
---|---|---|
committer | Michael Cahill <mjc@wiredtiger.com> | 2014-12-24 09:50:28 +1100 |
commit | 88c48e54dcd5cc6a96a2aec5f1d6876274d4e4e4 (patch) | |
tree | 4509efb477c7def46452ec176c7b18cb528c2163 /src/include | |
parent | 1dd8474373ec5833c566a51c229658e813058cb4 (diff) | |
parent | 90cef682588b4f6dcb5f4c7ec60d8d3cf8b53e80 (diff) | |
download | mongo-88c48e54dcd5cc6a96a2aec5f1d6876274d4e4e4.tar.gz |
Merge pull request #1514 from markbenvenuto/printlog_json
Fix json formatting of printlog to be valid json
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/extern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/extern.h b/src/include/extern.h index 056058f3828..18d3997fcb3 100644 --- a/src/include/extern.h +++ b/src/include/extern.h @@ -310,7 +310,7 @@ extern int __wt_log_open(WT_SESSION_IMPL *session); extern int __wt_log_close(WT_SESSION_IMPL *session); extern int __wt_log_newfile(WT_SESSION_IMPL *session, int conn_create, int *created); extern int __wt_log_read(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, uint32_t flags); -extern int __wt_log_scan(WT_SESSION_IMPL *session, WT_LSN *lsnp, uint32_t flags, int (*func)(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, void *cookie), void *cookie); +extern int __wt_log_scan(WT_SESSION_IMPL *session, WT_LSN *lsnp, uint32_t flags, int (*func)(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, void *cookie, int firstrecord), void *cookie); extern int __wt_log_write(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, uint32_t flags); extern int __wt_log_vprintf(WT_SESSION_IMPL *session, const char *fmt, va_list ap); extern int __wt_logrec_alloc(WT_SESSION_IMPL *session, size_t size, WT_ITEM **logrecp); |