diff options
-rw-r--r-- | sys/kern/kern_physio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c index 88cd0cf..4e818fc 100644 --- a/sys/kern/kern_physio.c +++ b/sys/kern/kern_physio.c @@ -117,10 +117,10 @@ physio(struct cdev *dev, struct uio *uio, int ioflag) * This device does not want I/O to be split. */ if (dev->si_flags & SI_NOSPLIT) { - printf("%s: request ptr %#jx is not " + printf("%s: request ptr %p is not " "on a page boundary, cannot split " "request\n", devtoname(dev), - (uintmax_t)bp->b_data); + bp->b_data); error = EFBIG; goto doerror; } |