diff options
| -rw-r--r-- | sys/dev/usb/ugen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ugen.c b/sys/dev/usb/ugen.c index 72cde8ffb1ac..fb2b46af8221 100644 --- a/sys/dev/usb/ugen.c +++ b/sys/dev/usb/ugen.c @@ -928,7 +928,8 @@ ugen_isoc_rintr(usbd_xfer_handle xfer, usbd_private_handle addr, return; usbd_get_xfer_status(xfer, NULL, NULL, &count, NULL); - DPRINTFN(5,("ugen_isoc_rintr: xfer %d, count=%d\n", req - sce->isoreqs, + DPRINTFN(5,("ugen_isoc_rintr: xfer %d, count=%d\n", + (int)(req - sce->isoreqs), count)); /* throw away oldest input if the buffer is full */ |
