diff options
author | flz <flz@FreeBSD.org> | 2007-02-03 21:11:11 +0000 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2007-02-03 21:11:11 +0000 |
commit | c6ea5290e2413d5a461205acfa682462b487176a (patch) | |
tree | 6b8ef14210d3fa69b343d03416ff82b086aad7b6 /sys/dev/usb/uhub.c | |
parent | 9722cd274341fba5ab7d762a94ada76ea4292f3e (diff) | |
download | FreeBSD-src-c6ea5290e2413d5a461205acfa682462b487176a.zip FreeBSD-src-c6ea5290e2413d5a461205acfa682462b487176a.tar.gz |
Fix build (sc->dev => sc->sc_dev).
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 9033761..3e06d45 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -182,7 +182,7 @@ uhub_attach(device_t self) } err = usbd_set_config_index(dev, 0, 1); if (err) { - DEVPRINTF((sc->dev, "configuration failed, error=%s\n", + DEVPRINTF((sc->sc_dev, "configuration failed, error=%s\n", usbd_errstr(err))); return (ENXIO); } |