diff options
author | Keith Bostic <keith@wiredtiger.com> | 2013-10-14 15:13:03 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2013-10-14 15:13:03 -0400 |
commit | 2c257ae97c1d99edfb9fcc4267d055efa7dc3be3 (patch) | |
tree | e243931986e363ac84b9318e987bb8ff16e479fb /src/conn/conn_log.c | |
parent | aa71f644351f18d5d7f6357fcc181bbf15a7a49b (diff) | |
download | mongo-2c257ae97c1d99edfb9fcc4267d055efa7dc3be3.tar.gz |
Review %d format usage, fix where it should have been something else.
Diffstat (limited to 'src/conn/conn_log.c')
-rw-r--r-- | src/conn/conn_log.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conn/conn_log.c b/src/conn/conn_log.c index 3103063040b..1997d96b864 100644 --- a/src/conn/conn_log.c +++ b/src/conn/conn_log.c @@ -97,7 +97,8 @@ __log_archive_server(void *arg) lsn = log->ckpt_lsn; lsn.offset = 0; WT_VERBOSE_ERR(session, log, - "log_archive: ckpt LSN %d,%" PRIu64, lsn.file, lsn.offset); + "log_archive: ckpt LSN %" PRIu32 ",%" PRIu64, + lsn.file, lsn.offset); /* * Main archive code. Get the list of all log files and * remove any earlier than the checkpoint LSN. |