summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-08-25 01:32:22 +0000
committerbde <bde@FreeBSD.org>2002-08-25 01:32:22 +0000
commite378e8ab0a00f6af2ec66ef51b2334ca1c414427 (patch)
treee51d56f5554c80e12d8ea1e4ace7ea1ec56c5c9b /sys/dev/sound
parent53d26ca284b05ed4c4198c9b1c688c6b53edac48 (diff)
downloadFreeBSD-src-e378e8ab0a00f6af2ec66ef51b2334ca1c414427.zip
FreeBSD-src-e378e8ab0a00f6af2ec66ef51b2334ca1c414427.tar.gz
Fixed editing errors in rev.1.4 which manifested as printf format errors
at compile time and probably as panics at runtime.
Diffstat (limited to 'sys/dev/sound')
-rw-r--r--sys/dev/sound/usb/uaudio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/usb/uaudio.c b/sys/dev/sound/usb/uaudio.c
index e79a70c..28f4ac5 100644
--- a/sys/dev/sound/usb/uaudio.c
+++ b/sys/dev/sound/usb/uaudio.c
@@ -699,12 +699,12 @@ uaudio_mixer_add_ctl(struct uaudio_softc *sc, struct mixerctl *mc)
for (i = 1; i < mc->nchan; i++)
DPRINTF((",%04x", mc->wValue[i]));
#if defined(__FreeBSD__)
- DPRINTF((" wIndex=%04x type=%d name='%s' unit='%s' "
+ DPRINTF((" wIndex=%04x type=%d ctl='%d' "
"min=%d max=%d\n",
mc->wIndex, mc->type, mc->ctl,
mc->minval, mc->maxval));
#else
- DPRINTF((" wIndex=%04x type=%d ctl='%d' "
+ DPRINTF((" wIndex=%04x type=%d name='%s' unit='%s' "
"min=%d max=%d\n",
mc->wIndex, mc->type, mc->ctlname, mc->ctlunit,
mc->minval, mc->maxval));
OpenPOWER on IntegriCloud