From ddccbcba683e7f6493c953ba72d9ec8c8bfd21cf Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 7 Nov 2002 22:23:46 +0000 Subject: Use [u]intmax_t and %j instead of long long and %ll to better fix warnings I fixed earlier. Requested by: mux, jake --- sys/dev/ida/ida.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/dev/ida') diff --git a/sys/dev/ida/ida.c b/sys/dev/ida/ida.c index a60c516..39369ea 100644 --- a/sys/dev/ida/ida.c +++ b/sys/dev/ida/ida.c @@ -40,6 +40,7 @@ #include #include +#include #include #include @@ -480,7 +481,7 @@ ida_intr(void *data) if (qcb == NULL || qcb->state != QCB_ACTIVE) { device_printf(ida->dev, - "ignoring completion %llx\n", (long long)completed); + "ignoring completion %jx\n", (intmax_t)completed); continue; } ida_done(ida, qcb); -- cgit v1.1