Fix format specifiers

main
Praveen Rao 9 years ago
parent f7b2a7b40b
commit a6efefef79
  1. 4
      db/db_test.cc

@ -9986,7 +9986,7 @@ TEST_F(DBTest, WalFilterTest) {
break; break;
} }
case WALFilter::WALProcessingOption::kIgnoreCurrentRecord: { case WALFilter::WALProcessingOption::kIgnoreCurrentRecord: {
fprintf(stderr, "Testing with ignoring record %" PRIu64 " only\n", fprintf(stderr, "Testing with ignoring record %" ROCKSDB_PRIszt " only\n",
applyOptionForRecordIndex); applyOptionForRecordIndex);
// We expect the record with applyOptionForRecordIndex to be not // We expect the record with applyOptionForRecordIndex to be not
// found. // found.
@ -10003,7 +10003,7 @@ TEST_F(DBTest, WalFilterTest) {
break; break;
} }
case WALFilter::WALProcessingOption::kStopReplay: { case WALFilter::WALProcessingOption::kStopReplay: {
fprintf(stderr, "Testing with stopping replay from record %" PRIu64 "\n", fprintf(stderr, "Testing with stopping replay from record %" ROCKSDB_PRIszt "\n",
applyOptionForRecordIndex); applyOptionForRecordIndex);
// We expect records beyond applyOptionForRecordIndex to be not // We expect records beyond applyOptionForRecordIndex to be not
// found. // found.

Loading…
Cancel
Save