Source-Changes-HG archive

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

[src/nick-nhusb]: src/sys/dev/usb Add a missing curly from previous



details:   https://anonhg.NetBSD.org/src/rev/67d052b2c18f
branches:  nick-nhusb
changeset: 804501:67d052b2c18f
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sat Jan 02 14:14:45 2016 +0000

description:
Add a missing curly from previous

diffstat:

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

diffs (27 lines):

diff -r a2a7c5c8c346 -r 67d052b2c18f sys/dev/usb/uhub.c
--- a/sys/dev/usb/uhub.c        Sat Jan 02 14:04:41 2016 +0000
+++ b/sys/dev/usb/uhub.c        Sat Jan 02 14:14:45 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhub.c,v 1.126.2.18 2016/01/02 14:04:41 skrll Exp $    */
+/*     $NetBSD: uhub.c,v 1.126.2.19 2016/01/02 14:14:45 skrll Exp $    */
 /*     $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $       */
 /*     $OpenBSD: uhub.c,v 1.86 2015/06/29 18:27:40 mpi Exp $ */
 
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.126.2.18 2016/01/02 14:04:41 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.126.2.19 2016/01/02 14:14:45 skrll Exp $");
 
 #include <sys/param.h>
 
@@ -938,7 +938,7 @@
                    device_unit(sc->sc_dev), sc->sc_explorepending, 0, 0);
 
                /* merge port bitmap into pending interrupts list */
-               for (size_t i = 0; i < sc->sc_statuslen; i++)
+               for (size_t i = 0; i < sc->sc_statuslen; i++) {
                        sc->sc_statuspend[i] |= sc->sc_statusbuf[i];
 
                        DPRINTFN(5, "uhub%d: pending/new ports "



Home | Main Index | Thread Index | Old Index