Skip to content

Commit

Permalink
Use explicit conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
andlr committed May 16, 2024
1 parent 1b76d5a commit c9ee3c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/checkpoint/checkpoint_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1094,8 +1094,8 @@ TEST_P(CheckpointTestWithParams, CheckpointWithTruncatedRecordBodyInWal) {

TEST_SYNC_POINT(
"CheckpointTest::CheckpointWithTruncatedRecordBodyInWal:BeforePut");
ASSERT_OK(
Put("foo2", rnd.RandomString(options.writable_file_max_buffer_size)));
ASSERT_OK(Put("foo2",
rnd.RandomString((int)options.writable_file_max_buffer_size)));

create_checkpoint_thread.join();

Expand Down

0 comments on commit c9ee3c8

Please sign in to comment.