diff options
author | netchild <netchild@FreeBSD.org> | 2007-01-06 19:11:48 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2007-01-06 19:11:48 +0000 |
commit | 9131a172735d17248d28f501ef0eb37ef082434f (patch) | |
tree | 5b12f231e02db2ebdfcf0a982002db4a8a4e4b90 | |
parent | 6c70f0dabf640ee7b7032f093f30c5a30edbef4b (diff) | |
download | FreeBSD-src-9131a172735d17248d28f501ef0eb37ef082434f.zip FreeBSD-src-9131a172735d17248d28f501ef0eb37ef082434f.tar.gz |
Fixes module build with DEB(x) defined to x.
Submitted by: Yuriy Tsibizov <Yuriy.Tsibizov@gfk.ru>
-rw-r--r-- | sys/dev/sound/pcm/feeder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/feeder.c b/sys/dev/sound/pcm/feeder.c index 4f0de4f..2cd7323 100644 --- a/sys/dev/sound/pcm/feeder.c +++ b/sys/dev/sound/pcm/feeder.c @@ -704,7 +704,7 @@ chn_fmtchain(struct pcm_channel *c, u_int32_t *to) try = feeder_fmtchain(to, c->feeder, stop, max); DEB(if (try != NULL) { printf("%s: 0x%08x -> 0x%08x (maxdepth: %d)\n", - __func__, from[0], to[0], max) + __func__, from[0], to[0], max); }); } while (try == NULL && max++ < FEEDER_FMTCHAIN_MAXDEPTH); } else { |