From f5b6f8d766a37c21c3ebee8a232aa2633bdeb108 Mon Sep 17 00:00:00 2001 From: David Gwynne Date: Wed, 21 Jul 2004 07:51:05 +0000 Subject: from netbsd, umass.c 1.112 Fix a printf() error. ok krw@ --- sys/dev/usb/umass.c | 4 ++-- 1 file 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 , @@ -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; -- cgit v1.2.3