Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Oct 6, 2023
1 parent a74eaab commit 8484bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/pem.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ int aws_pem_objects_init_from_file_contents(
AWS_PRECONDITION(pem_objects != NULL);

/* Init empty array list, ideally, the PEM should only has one key included. */
if (aws_array_list_init_dynamic(&pem_objects, allocator, 1, sizeof(struct aws_pem_object))) {
if (aws_array_list_init_dynamic(pem_objects, allocator, 1, sizeof(struct aws_pem_object))) {
return AWS_OP_ERR;
}

Expand Down

0 comments on commit 8484bc2

Please sign in to comment.