The 'ret' variable is of type ssize_t and we use proper format for it (%zd), so

no (bogus) cast is needed.

MFC after:	3 days
This commit is contained in:
Pawel Jakub Dawidek 2010-12-16 19:48:03 +00:00
parent d8ca56cb98
commit fba1bf5a2c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216494

View File

@ -1142,8 +1142,7 @@ local_send_thread(void *arg)
} else if (ret != ggio->gctl_length) {
reqlog(LOG_WARNING, 0, ggio,
"Local request failed (%zd != %jd), trying remote node. ",
(intmax_t)ret,
(intmax_t)ggio->gctl_length);
ret, (intmax_t)ggio->gctl_length);
}
QUEUE_INSERT1(hio, send, rncomp);
continue;
@ -1162,7 +1161,7 @@ local_send_thread(void *arg)
hio->hio_errors[ncomp] = EIO;
reqlog(LOG_WARNING, 0, ggio,
"Local request failed (%zd != %jd): ",
(intmax_t)ret, (intmax_t)ggio->gctl_length);
ret, (intmax_t)ggio->gctl_length);
} else {
hio->hio_errors[ncomp] = 0;
}