summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2004-07-21 07:51:05 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2004-07-21 07:51:05 +0000
commitf5b6f8d766a37c21c3ebee8a232aa2633bdeb108 (patch)
tree9cf1a6d2e28665857edfc22bfa7461a8a5d7d14f /sys/dev
parent4a2ce4a6686993d21f223795682d59942f571218 (diff)
from netbsd, umass.c 1.112
Fix a printf() error. ok krw@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/umass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c
index 4904a226f92..88c880247f7 100644
--- a/sys/dev/usb/umass.c
+++ b/sys/dev/usb/umass.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umass.c,v 1.32 2004/07/21 07:49:07 dlg Exp $ */
+/* $OpenBSD: umass.c,v 1.33 2004/07/21 07:51:04 dlg Exp $ */
/* $NetBSD: umass.c,v 1.98 2003/09/08 19:30:59 mycroft Exp $ */
/*-
* Copyright (c) 1999 MAEKAWA Masahide <bishop@rr.iij4u.or.jp>,
@@ -1749,7 +1749,7 @@ Static void
umass_bbb_dump_csw(struct umass_softc *sc, umass_bbb_csw_t *csw)
{
int sig = UGETDW(csw->dCSWSignature);
- int tag = UGETW(csw->dCSWTag);
+ int tag = UGETDW(csw->dCSWTag);
int res = UGETDW(csw->dCSWDataResidue);
int status = csw->bCSWStatus;