tests/hnb-test: Fix signedness of assigned pointer

Change-Id: I320ad86b83b0308b43489e8d95f63d6ed55821b5
This commit is contained in:
Pau Espin 2021-01-14 11:27:34 +01:00
parent 84c3e8649a
commit 4c928485ba
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ static void hnb_send_register_req(struct hnb_test *hnb_test)
asn1_u8_to_str(&request.rac, &rac, rac);
asn1_u28_to_bitstring(&request.cellIdentity, &cid, cid);
request.hnB_Identity.hNB_Identity_Info.buf = identity;
request.hnB_Identity.hNB_Identity_Info.buf = (uint8_t*) identity;
request.hnB_Identity.hNB_Identity_Info.size = strlen(identity);
request.plmNidentity.buf = plmn;