Skip to content

Commit b3f48c7

Browse files
committed
lint
1 parent dfc4a8d commit b3f48c7

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Diff for: include/aws/s3/s3express_credentials_provider.h

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ struct aws_credentials_properties_s3express {
2828
*/
2929
struct aws_byte_cursor region;
3030

31-
3231
struct aws_http_headers *headers;
3332
};
3433

Diff for: source/s3_request_messages.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,7 @@ const struct aws_byte_cursor g_s3_create_session_allowed_headers[] = {
236236
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
237237
};
238238

239-
const size_t g_s3_create_session_allowed_headers_count =
240-
AWS_ARRAY_SIZE(g_s3_create_session_allowed_headers);
239+
const size_t g_s3_create_session_allowed_headers_count = AWS_ARRAY_SIZE(g_s3_create_session_allowed_headers);
241240

242241
static const struct aws_byte_cursor s_x_amz_meta_prefix = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-meta-");
243242

Diff for: tests/s3_mock_server_s3express_provider_test.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,8 @@ static size_t s_get_index_from_s3express_cache(
445445
AWS_CONTAINER_OF(node, struct aws_linked_hash_table_node, node);
446446
node = aws_linked_list_next(node);
447447
struct aws_s3express_session *session = table_node->value;
448-
struct aws_string *hash_key =
449-
aws_encode_s3express_hash_key_new(s_s3express_tester.allocator, original_credentials, host_value, session->headers);
448+
struct aws_string *hash_key = aws_encode_s3express_hash_key_new(
449+
s_s3express_tester.allocator, original_credentials, host_value, session->headers);
450450
if (aws_string_eq(session->hash_key, hash_key)) {
451451
aws_string_destroy(hash_key);
452452
aws_mutex_unlock(&impl->synced_data.lock);

0 commit comments

Comments
 (0)