Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Fix a printf() error.



details:   https://anonhg.NetBSD.org/src/rev/39e94ee7f2aa
branches:  trunk
changeset: 567592:39e94ee7f2aa
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Tue Jun 22 12:21:04 2004 +0000

description:
Fix a printf() error.

diffstat:

 sys/dev/usb/umass.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 99e158eedc26 -r 39e94ee7f2aa sys/dev/usb/umass.c
--- a/sys/dev/usb/umass.c       Tue Jun 22 12:01:29 2004 +0000
+++ b/sys/dev/usb/umass.c       Tue Jun 22 12:21:04 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: umass.c,v 1.111 2004/04/23 17:25:25 itojun Exp $       */
+/*     $NetBSD: umass.c,v 1.112 2004/06/22 12:21:04 mycroft Exp $      */
 
 /*
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -131,7 +131,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.111 2004/04/23 17:25:25 itojun Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.112 2004/06/22 12:21:04 mycroft Exp $");
 
 #include "atapibus.h"
 #include "scsibus.h"
@@ -1797,7 +1797,7 @@
 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;
 



Home | Main Index | Thread Index | Old Index