From f7b2a7b40b15dd79a0bd8cb2af48f4cc52a5826b Mon Sep 17 00:00:00 2001 From: Praveen Rao Date: Mon, 12 Oct 2015 18:55:46 -0700 Subject: [PATCH] Fix format specifiers --- db/db_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/db_test.cc b/db/db_test.cc index b90168a7a..a2f524ba0 100644 --- a/db/db_test.cc +++ b/db/db_test.cc @@ -9986,7 +9986,7 @@ TEST_F(DBTest, WalFilterTest) { break; } case WALFilter::WALProcessingOption::kIgnoreCurrentRecord: { - fprintf(stderr, "Testing with ignoring record %d only\n", + fprintf(stderr, "Testing with ignoring record %" PRIu64 " only\n", applyOptionForRecordIndex); // We expect the record with applyOptionForRecordIndex to be not // found. @@ -10003,7 +10003,7 @@ TEST_F(DBTest, WalFilterTest) { break; } case WALFilter::WALProcessingOption::kStopReplay: { - fprintf(stderr, "Testing with stopping replay from record %d\n", + fprintf(stderr, "Testing with stopping replay from record %" PRIu64 "\n", applyOptionForRecordIndex); // We expect records beyond applyOptionForRecordIndex to be not // found.