summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/format/bulk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/format/bulk.c')
-rw-r--r--src/third_party/wiredtiger/test/format/bulk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/test/format/bulk.c b/src/third_party/wiredtiger/test/format/bulk.c
index a88d3b3a9c4..a811b3866b0 100644
--- a/src/third_party/wiredtiger/test/format/bulk.c
+++ b/src/third_party/wiredtiger/test/format/bulk.c
@@ -194,7 +194,8 @@ table_load(TABLE *base, TABLE *table)
* When first starting up, report the progress for every 10 keys in the first 5K keys. After
* 5K records, report every 5K keys.
*/
- report_progress = (keyno < 5000 && keyno % 10 == 0) || keyno % 5000 == 0;
+ report_progress =
+ (keyno < (5 * WT_THOUSAND) && keyno % 10 == 0) || keyno % (5 * WT_THOUSAND) == 0;
/* Report on progress. */
if (report_progress)
track(track_buf, keyno);