Skip to content

Commit

Permalink
fix: convert data type of ctx->aid (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto authored Aug 27, 2024
1 parent 1304ca1 commit 9e0612b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion euicc/euicc.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ int euicc_init(struct euicc_ctx *ctx)

if (ctx->aid == NULL)
{
ctx->aid = ISD_R_AID;
ctx->aid = (const uint8_t *)ISD_R_AID;
ctx->aid_len = sizeof(ISD_R_AID) - 1;
}

Expand Down

0 comments on commit 9e0612b

Please sign in to comment.