Skip to content

Commit 57fa3cc

Browse files
committed
Merge pull request XRPLF#304 from Liuchang0812/fix-check
fixed XRPLF#303: replace %ld with % PRId64
2 parents cd44522 + 4436f17 commit 57fa3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

table/cuckoo_table_reader_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ void ReadKeys(uint64_t num, uint32_t batch_size) {
522522
float time_per_op = (env->NowMicros() - start_time) * 1.0 / num;
523523
fprintf(stderr,
524524
"Time taken per op is %.3fus (%.1f Mqps) with batch size of %u, "
525-
"# of found keys %ld\n",
525+
"# of found keys %" PRId64 "\n",
526526
time_per_op, 1.0 / time_per_op, batch_size, found_count);
527527
}
528528
} // namespace.

0 commit comments

Comments
 (0)