From 612477f7ac2e8bea5ca582bcb878b5365a68ebdc Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Tue, 20 Dec 2005 23:07:38 +0000 Subject: [PATCH] - Fix type in previous commit; unbreak build Approved by: ssouhlal Pointy hat to: pav --- sys/dev/usb/umass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c index 7118f24e311..37453574895 100644 --- a/sys/dev/usb/umass.c +++ b/sys/dev/usb/umass.c @@ -1626,7 +1626,7 @@ umass_bbb_state(usbd_xfer_handle xfer, usbd_private_handle priv, /* Translate weird command-status signatures. */ if (sc->quirks & WRONG_CSWSIG) { - uDWord dCSWSignature = UGETDW(sc->csw.dCSWSignature); + u_int32_t dCSWSignature = UGETDW(sc->csw.dCSWSignature); if (dCSWSignature == CSWSIGNATURE_OLYMPUS_C1 || dCSWSignature == CSWSIGNATURE_IMAGINATION_DBX1) USETDW(sc->csw.dCSWSignature, CSWSIGNATURE);