diff options
author | 2004-07-21 07:51:04 +0000 | |
---|---|---|
committer | 2004-07-21 07:51:04 +0000 | |
commit | 3f7b1b23744c2e341ed15f34d0a44ae9a7090f2e (patch) | |
tree | bd0e86094acd4b1fadfb2808c02d9fed11173a96 /sys/dev/usb/umass.c | |
parent | from netbsd, umass.c 1.116 (diff) | |
download | wireguard-openbsd-3f7b1b23744c2e341ed15f34d0a44ae9a7090f2e.tar.xz wireguard-openbsd-3f7b1b23744c2e341ed15f34d0a44ae9a7090f2e.zip |
from netbsd, umass.c 1.112
Fix a printf() error.
ok krw@
Diffstat (limited to 'sys/dev/usb/umass.c')
-rw-r--r-- | sys/dev/usb/umass.c | 4 |
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; |