diff options
author | peter <peter@FreeBSD.org> | 2002-02-28 00:06:59 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-02-28 00:06:59 +0000 |
commit | 4bb5a22561e60ce30706d5f3928787022c7fa688 (patch) | |
tree | bd0f79405a437176be66f688c60d3d1164e602f4 /sys/dev/usb/ohci.c | |
parent | ef2430cf7046c63994f7aa419c7b1881e789468d (diff) | |
download | FreeBSD-src-4bb5a22561e60ce30706d5f3928787022c7fa688.zip FreeBSD-src-4bb5a22561e60ce30706d5f3928787022c7fa688.tar.gz |
Fix debug printf formats
Diffstat (limited to 'sys/dev/usb/ohci.c')
-rw-r--r-- | sys/dev/usb/ohci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index ec7b667..63792a1 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1672,8 +1672,7 @@ ohci_dump_ed(ohci_soft_ed_t *sed) OHCI_ED_GET_MAXP(le32toh(sed->ed.ed_flags)), (int)le32toh(sed->ed.ed_flags), "\20\14OUT\15IN\16LOWSPEED\17SKIP\20ISO", - (int)(uintptr_t)le32toh(sed->ed.ed_tailp), - "\20\1BIT1\2BIT2", + (u_long)(uintptr_t)le32toh(sed->ed.ed_tailp), (int)(uintptr_t)le32toh(sed->ed.ed_headp), "\20\1HALT\2CARRY", (u_long)le32toh(sed->ed.ed_headp), |