mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
misc: Fix warning about the cast.
This commit is contained in:
@@ -50,7 +50,7 @@ static struct mncc_sock_state *g_state;
|
||||
/* input from CC code into mncc_sock */
|
||||
void mncc_sock_from_cc(struct gsm_network *net, struct msgb *msg)
|
||||
{
|
||||
struct gsm_mncc *mncc_in = msgb_data(msg);
|
||||
struct gsm_mncc *mncc_in = (struct gsm_mncc *) msgb_data(msg);
|
||||
int msg_type = mncc_in->msg_type;
|
||||
|
||||
/* Check if we currently have a MNCC handler connected */
|
||||
|
Reference in New Issue
Block a user