From e51c24920ff7f73968a14a9d971afd1726c63b6a Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 28 Feb 2002 00:06:59 +0000 Subject: [PATCH] Fix debug printf formats --- sys/dev/usb/ohci.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index ec7b6672c96f..63792a149cf8 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),