Skip to content

Commit 5c3a24b

Browse files
committed
clang
1 parent f17bb25 commit 5c3a24b

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

source/mqtt_iot_metrics.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ int aws_mqtt_append_sdk_metrics_to_username(
382382
struct aws_byte_cursor metadata_str = aws_byte_cursor_from_c_str("Metadata");
383383

384384
struct aws_array_list username_params_list;
385-
aws_array_list_init_dynamic(&username_params_list, allocator, DEFAULT_QUERY_PARAM_COUNT, sizeof(struct aws_uri_param));
385+
aws_array_list_init_dynamic(
386+
&username_params_list, allocator, DEFAULT_QUERY_PARAM_COUNT, sizeof(struct aws_uri_param));
386387

387388
struct aws_byte_buf metadata_value_buf;
388389
AWS_ZERO_STRUCT(metadata_value_buf);
@@ -505,7 +506,11 @@ int aws_mqtt_append_sdk_metrics_to_username(
505506
}
506507

507508
if (s_build_username_query(
508-
&local_original_username, base_username_length, &username_params_list, output_username, out_full_username_size)) {
509+
&local_original_username,
510+
base_username_length,
511+
&username_params_list,
512+
output_username,
513+
out_full_username_size)) {
509514
goto cleanup;
510515
}
511516

0 commit comments

Comments
 (0)