Fix printf format in 32bit arch

Change-Id: I1273a42da2362c2b65169343e3b8d856338b3973
This commit is contained in:
Pau Espin Pedrol
2022-07-18 17:01:00 +02:00
committed by pespin
parent 384cff745e
commit 3df34be9ce

View File

@@ -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);