Use correct format specifier for ssize_t, found by Coverity Scan
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
parent
774523f6e2
commit
884a0a180b
@ -1698,7 +1698,7 @@ void fprintlog(struct filed *f, struct buf_msg *buffer)
|
|||||||
sin = (struct sockaddr_in *)ai->ai_addr;
|
sin = (struct sockaddr_in *)ai->ai_addr;
|
||||||
inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf));
|
inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf));
|
||||||
}
|
}
|
||||||
logit("Sent %d bytes to remote %s on socket %d ...\n",
|
logit("Sent %zd bytes to remote %s on socket %d ...\n",
|
||||||
lsent, buf, finet[i + 1]);
|
lsent, buf, finet[i + 1]);
|
||||||
if (lsent == len) {
|
if (lsent == len) {
|
||||||
err = -1;
|
err = -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user