Skip to content

Commit 7ea396c

Browse files
win
1 parent 438f74e commit 7ea396c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/s3_data_plane_tests.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3353,6 +3353,7 @@ static int s_test_s3_put_object_sse_c_aes256_multipart_with_checksum(struct aws_
33533353
struct aws_future_s3_buffer_ticket *s_failing_pool_reserve(
33543354
struct aws_s3_buffer_pool *pool,
33553355
struct aws_s3_buffer_pool_reserve_meta meta) {
3356+
(void)meta;
33563357

33573358
struct aws_future_s3_buffer_ticket *future = aws_future_s3_buffer_ticket_new((struct aws_allocator *)pool->impl);
33583359
aws_future_s3_buffer_ticket_set_error(future, AWS_ERROR_S3_BUFFER_ALLOCATION_FAILED);
@@ -3367,6 +3368,7 @@ static struct aws_s3_buffer_pool_vtable s_failing_pool_vtable = {
33673368
struct aws_s3_buffer_pool *s_always_error_buffer_pool_fn(
33683369
struct aws_allocator *allocator,
33693370
struct aws_s3_buffer_pool_config config) {
3371+
(void)config;
33703372
struct aws_s3_buffer_pool *pool = aws_mem_calloc(allocator, 1, sizeof(struct aws_s3_buffer_pool));
33713373
pool->impl = allocator;
33723374
pool->vtable = &s_failing_pool_vtable;

0 commit comments

Comments
 (0)