mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +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");
|
||||
return -1;
|
||||
} else if (slen > sizeof(addr)) {
|
||||
fprintf(stderr, "Gateway received message from outerspace: %lu %d\n",
|
||||
slen, sizeof(addr));
|
||||
fprintf(stderr, "Gateway received message from outerspace: %lu %lu\n",
|
||||
(unsigned long int)slen, sizeof(addr));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user