tests/hnb-test-ranap.c: Fix wrong printf format

Catched by compiler:
hnb-test-ranap.c:76:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘RANAP_CN_DomainIndicator_t’ {aka ‘long int’} [-Wformat=]

Change-Id: Ie4cd6a36fd0e9a871a1815d600e8a321a3d2a208
This commit is contained in:
Pau Espin 2020-03-20 20:19:47 +01:00
parent c593da5d45
commit 4ab00db868
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ void hnb_test_rua_cl_handle_ranap(struct hnb_test *hnb,
ranap_msg->msg.pagingIEs.permanentNAS_UE_ID.choice.iMSI.size);
} else imsi[0] = '\0';
printf("rx Paging: presence=%hx domain=%d IMSI=%s\n",
printf("rx Paging: presence=%hx domain=%ld IMSI=%s\n",
ranap_msg->msg.pagingIEs.presenceMask,
ranap_msg->msg.pagingIEs.cN_DomainIndicator,
imsi