Do not use %z to print a time_t. Fixes build on architectures where time_t

and size_t are different types.
This commit is contained in:
John Baldwin 2010-08-11 16:56:38 +00:00
parent a920a976af
commit 9f6eb14c88
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211182

View File

@ -306,11 +306,11 @@ iscsi_read(struct cdev *dev, struct uio *uio, int ioflag)
int i = 0;
struct socket *so = sp->soc;
#define pukeit(i, pq) do {\
sprintf(buf, "%03d] %06x %02x %06x %06x %zd\n",\
sprintf(buf, "%03d] %06x %02x %06x %06x %jd\n",\
i, ntohl(pq->pdu.ipdu.bhs.CmdSN),\
pq->pdu.ipdu.bhs.opcode, ntohl(pq->pdu.ipdu.bhs.itt),\
ntohl(pq->pdu.ipdu.bhs.ExpStSN),\
pq->ts.sec);\
(intmax_t)pq->ts.sec);\
} while(0)
sprintf(buf, "%d/%d /---- hld -----/\n", sp->stats.nhld, sp->stats.max_hld);