From 760e2cb04a994165551e900893884f2086dcc118 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 25 Aug 2002 01:32:22 +0000 Subject: Fixed editing errors in rev.1.4 which manifested as printf format errors at compile time and probably as panics at runtime. --- sys/dev/sound/usb/uaudio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/sound/usb/uaudio.c b/sys/dev/sound/usb/uaudio.c index e79a70cba66e..28f4ac54e01c 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)); -- cgit v1.3