Skip to content

Commit

Permalink
Use port size_t formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yuslepukhin committed Dec 15, 2015
1 parent 963660e commit b6d19ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/transactions/transaction_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ TEST_F(TransactionTest, FlushTest2) {

s = txn->Delete("S");
// Should fail after encountering a write to S in SST file
fprintf(stderr, "%lu %s\n", n, s.ToString().c_str());
fprintf(stderr, "%" ROCKSDB_PRIszt " %s\n", n, s.ToString().c_str());
ASSERT_TRUE(s.IsBusy());

// Write a bunch of keys to db to force a compaction
Expand Down

0 comments on commit b6d19ad

Please sign in to comment.