mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-cbc.git
synced 2025-10-23 08:22:19 +00:00
Fix printf format in 32bit arch
Change-Id: I1273a42da2362c2b65169343e3b8d856338b3973
This commit is contained in:
@@ -206,7 +206,7 @@ static int get_msg_id(struct osmo_sbcap_cbc_client *client, const SBcAP_SBC_AP_P
|
|||||||
if (!ie)
|
if (!ie)
|
||||||
return -1;
|
return -1;
|
||||||
if (ie->size != 2) {
|
if (ie->size != 2) {
|
||||||
LOGPSBCAPC(client, LOGL_ERROR, "get_msg_id wrong size %ld\n", ie->size);
|
LOGPSBCAPC(client, LOGL_ERROR, "get_msg_id wrong size %zu\n", ie->size);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return osmo_load16be(ie->buf);
|
return osmo_load16be(ie->buf);
|
||||||
|
Reference in New Issue
Block a user