diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 21:34:21 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 21:34:21 +0000 |
| commit | 9cbe11ea181d3d549c9458f99ecc49f0ea153312 (patch) | |
| tree | 46fbf400ae8e077f8190885716ad4f64ba5799da | |
| parent | 34c7d76e4505253778399653f8511eb976b73b16 (diff) | |
Notes
| -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 */ |
