Skip to content

Commit 7a9cc1b

Browse files
fix build
1 parent 446bdd9 commit 7a9cc1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/s3_default_buffer_pool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ static struct aws_byte_buf s_acquire_buffer_synced(
862862
} else if (ticket->reserved_from == AWS_S3_BUFFER_POOL_RESERVED_FROM_PRIMARY) {
863863
ticket->ptr = s_primary_acquire_synced(buffer_pool, ticket);
864864
} else {
865-
AWS_ASSERT(ticket->reserved_from == AWS_S3_BUFFER_POOL_RESERVED_FROM_SECONDARY)
865+
AWS_ASSERT(ticket->reserved_from == AWS_S3_BUFFER_POOL_RESERVED_FROM_SECONDARY);
866866
ticket->ptr = aws_mem_acquire(buffer_pool->base_allocator, ticket->size);
867867
buffer_pool->secondary_used += ticket->size;
868868

0 commit comments

Comments
 (0)