mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 03:19:31 +00:00
[SBI] fix the compile warning in MacOSX
This commit is contained in:
parent
0b063a57c8
commit
e5a0dfb444
33 changed files with 66 additions and 58 deletions
|
|
@ -248,12 +248,12 @@ static void sbi_message_test2(abts_case *tc, void *data)
|
|||
|
||||
entry = smf_info2->access_type->first;
|
||||
ABTS_PTR_NOTNULL(tc, entry);
|
||||
access_type = (OpenAPI_access_type_e)entry->data;
|
||||
access_type = (intptr_t)entry->data;
|
||||
ABTS_INT_EQUAL(tc, OpenAPI_access_type_3GPP_ACCESS, access_type);
|
||||
|
||||
entry = entry->next;
|
||||
ABTS_PTR_NOTNULL(tc, entry);
|
||||
access_type = (OpenAPI_access_type_e)entry->data;
|
||||
access_type = (intptr_t)entry->data;
|
||||
ABTS_INT_EQUAL(tc, OpenAPI_access_type_NON_3GPP_ACCESS, access_type);
|
||||
|
||||
OpenAPI_list_free(smf_info1->s_nssai_smf_info_list);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue