mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 04:53:24 +00:00
fix fprintf format specifiers in osmo-bsc_mgcp
This commit is contained in:
committed by
Harald Welte
parent
e1d2e1c74c
commit
d02e68b24d
@@ -156,8 +156,8 @@ static int read_call_agent(struct osmo_fd *fd, unsigned int what)
|
|||||||
perror("Gateway failed to read");
|
perror("Gateway failed to read");
|
||||||
return -1;
|
return -1;
|
||||||
} else if (slen > sizeof(addr)) {
|
} else if (slen > sizeof(addr)) {
|
||||||
fprintf(stderr, "Gateway received message from outerspace: %lu %d\n",
|
fprintf(stderr, "Gateway received message from outerspace: %lu %lu\n",
|
||||||
slen, sizeof(addr));
|
(unsigned long int)slen, sizeof(addr));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user