Skip to content

Commit

Permalink
chore: change profile metadata buffer length type
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto committed Aug 3, 2024
1 parent c1eadb4 commit fe08d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion euicc/es9p_ex.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ int es9p_ex_get_profile_metadata(struct euicc_ctx *ctx, struct es9p_ex_profile_m
goto err;
}

int profile_metadata_buffer_len = euicc_base64_decode(profile_metadata_buffer, ctx->http._internal.prepare_download_param->b64_profileMetadata);
uint32_t profile_metadata_buffer_len = euicc_base64_decode(profile_metadata_buffer, ctx->http._internal.prepare_download_param->b64_profileMetadata);
if (profile_metadata_buffer_len < 0)
{
goto err;
Expand Down

0 comments on commit fe08d91

Please sign in to comment.