summaryrefslogtreecommitdiff
path: root/test/cursor_order/cursor_order.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2016-03-11 16:02:41 -0500
committerKeith Bostic <keith@wiredtiger.com>2016-03-11 16:02:41 -0500
commitcc0d34b09350d73702eb6d76560dff0b9448db77 (patch)
tree9050bc5d002cb8ed46b16ae1a6c8b348e15c46cd /test/cursor_order/cursor_order.c
parentd1a59d8d5342fcaaa194a31a60ca6c4c9c55ba43 (diff)
downloadmongo-cc0d34b09350d73702eb6d76560dff0b9448db77.tar.gz
WT-2471: review WiredTiger "int" printf formats
Diffstat (limited to 'test/cursor_order/cursor_order.c')
-rw-r--r--test/cursor_order/cursor_order.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/cursor_order/cursor_order.c b/test/cursor_order/cursor_order.c
index 68d2f092c60..d8cfc0c1421 100644
--- a/test/cursor_order/cursor_order.c
+++ b/test/cursor_order/cursor_order.c
@@ -154,8 +154,10 @@ main(int argc, char *argv[])
printf("%s: process %" PRIu64 "\n", progname, (uint64_t)getpid());
for (cnt = 1; runs == 0 || cnt <= runs; ++cnt) {
- printf(" %d: %u reverse scanners, %u writers\n", cnt,
- (int)cfg->reverse_scanners, (int)cfg->append_inserters);
+ printf(
+ " %d: %" PRIu64
+ " reverse scanners, %" PRIu64 " writers\n",
+ cnt, cfg->reverse_scanners, cfg->append_inserters);
shutdown(); /* Clean up previous runs */