@@ -5023,7 +5023,7 @@ static int s_test_s3_round_trip_dynamic_range_size_download_multipart(struct aws
50235023 ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester ));
50245024
50255025 size_t stored_part_size = MB_TO_BYTES (15 );
5026- struct aws_s3_tester_client_options client_options = {};
5026+ struct aws_s3_tester_client_options client_options = {0 };
50275027
50285028 struct aws_s3_client * client = NULL ;
50295029 ASSERT_SUCCESS (aws_s3_tester_client_new (& tester , & client_options , & client ));
@@ -5055,7 +5055,7 @@ static int s_test_s3_round_trip_dynamic_range_size_download_multipart(struct aws
50555055 .part_size = stored_part_size ,
50565056 .put_options =
50575057 {
5058- .object_size_mb = object_size_mb ,
5058+ .object_size_mb = ( uint32_t ) object_size_mb ,
50595059 .object_path_override = object_path ,
50605060 .file_on_disk = true,
50615061 .full_object_checksum = true,
@@ -5211,7 +5211,7 @@ static int s_test_s3_round_trip_dynamic_range_size_download_single_part(struct a
52115211 },
52125212 .put_options =
52135213 {
5214- .object_size_mb = stored_part_size_mb ,
5214+ .object_size_mb = ( uint32_t ) stored_part_size_mb ,
52155215 .object_path_override = object_path ,
52165216 .file_on_disk = true,
52175217 .full_object_checksum = true,
0 commit comments