Skip to content

Commit 895ba3d

Browse files
lint
1 parent f778a48 commit 895ba3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/aws/s3/s3_buffer_pool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ struct aws_s3_buffer_pool_config {
141141
* by logging failure reason, returning null and raising aws_error.
142142
*/
143143
typedef 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

147147
AWS_EXTERN_C_END

source/s3_client.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)