summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/recovery/random-abort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/recovery/random-abort.c')
-rw-r--r--src/third_party/wiredtiger/test/recovery/random-abort.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/recovery/random-abort.c b/src/third_party/wiredtiger/test/recovery/random-abort.c
index c9cc10d2db3..f9c3ed28814 100644
--- a/src/third_party/wiredtiger/test/recovery/random-abort.c
+++ b/src/third_party/wiredtiger/test/recovery/random-abort.c
@@ -249,9 +249,10 @@ main(int argc, char *argv[])
if ((ret = conn->close(conn, NULL)) != 0)
testutil_die(ret, "WT_CONNECTION:close");
if (absent) {
- printf("%u record(s) absent from %u\n", absent, count);
+ printf("%" PRIu32 " record(s) absent from %" PRIu32 "\n",
+ absent, count);
return (EXIT_FAILURE);
}
- printf("%u records verified\n", count);
+ printf("%" PRIu32 " records verified\n", count);
return (EXIT_SUCCESS);
}