From 63da9081fe5c30f06dd4e6443765b9e04f1bba89 Mon Sep 17 00:00:00 2001 From: ratchov Date: Sat, 17 May 2014 12:19:36 +0000 Subject: [PATCH] unbreak build: exchange %b args order, from miod@ --- sys/dev/pci/yds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/yds.c b/sys/dev/pci/yds.c index 525b727c5c1..8cce53f4637 100644 --- a/sys/dev/pci/yds.c +++ b/sys/dev/pci/yds.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yds.c,v 1.45 2013/12/06 21:03:04 deraadt Exp $ */ +/* $OpenBSD: yds.c,v 1.46 2014/05/17 12:19:36 ratchov Exp $ */ /* $NetBSD: yds.c,v 1.5 2001/05/21 23:55:04 minoura Exp $ */ /* @@ -711,7 +711,7 @@ yds_attach(struct device *parent, struct device *self, void *aux) #ifdef AUDIO_DEBUG if (ydsdebug) printf("%s: chip has %b\n", sc->sc_dev.dv_xname, - YDS_CAP_BITS, sc->sc_flags); + sc->sc_flags, YDS_CAP_BITS); #endif /* Disable legacy mode */ -- 2.20.1