aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Dowse <iedowse@FreeBSD.org>2003-08-23 12:18:30 +0000
committerIan Dowse <iedowse@FreeBSD.org>2003-08-23 12:18:30 +0000
commit72d173fa8f2ee3065520232d19204b4e17a87c10 (patch)
tree4189ac11d034e3a5cab59fc19ba7183c2ec27360 /sys
parente5282aea6b7dc41eff5fabe17331c0f23d0131cb (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sound/pcm/feeder_fmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/feeder_fmt.c b/sys/dev/sound/pcm/feeder_fmt.c
index 286903f3bb3c5..f0c5d282eded9 100644
--- a/sys/dev/sound/pcm/feeder_fmt.c
+++ b/sys/dev/sound/pcm/feeder_fmt.c
@@ -291,7 +291,7 @@ feed_monotostereo16(struct pcm_feeder *f, struct pcm_channel *c, u_int8_t *b, u_
j = k - 1;
i = j * 2 + 1;
- while (i > 3 && j >= 1) {
+ while (i >= 3 && j >= 1) {
x = b[j--];
y = b[j--];
b[i--] = x;