Fix format specifiers

This commit is contained in:
Praveen Rao 2015-10-12 18:55:46 -07:00
parent eb24178553
commit f7b2a7b40b

View File

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