File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ struct aws_s3_buffer_pool_config {
141141 * by logging failure reason, returning null and raising aws_error.
142142 */
143143typedef struct aws_s3_buffer_pool * (aws_s3_buffer_pool_factory_fn )(struct aws_allocator * allocator ,
144- struct aws_s3_buffer_pool_config config ,
144+ struct aws_s3_buffer_pool_config config ,
145145 void * user_data );
146146
147147AWS_EXTERN_C_END
Original file line number Diff line number Diff line change @@ -367,8 +367,8 @@ struct aws_s3_client *aws_s3_client_new(
367367 };
368368
369369 if (client_config -> buffer_pool_factory_fn ) {
370- client -> buffer_pool = client_config -> buffer_pool_factory_fn ( allocator , buffer_pool_config ,
371- client_config -> buffer_pool_user_data );
370+ client -> buffer_pool =
371+ client_config -> buffer_pool_factory_fn ( allocator , buffer_pool_config , client_config -> buffer_pool_user_data );
372372 } else {
373373
374374 client -> buffer_pool = aws_s3_default_buffer_pool_new (allocator , buffer_pool_config );
You can’t perform that action at this time.
0 commit comments