From 8c384193743cfb6256fbd3c09f8b019bbdf88f57 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 11 Jan 2008 20:55:08 +0000 Subject: Make code slightly less confusing to me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25678 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_jack.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libao2') diff --git a/libao2/ao_jack.c b/libao2/ao_jack.c index 573d6dfbf7..70f9bfad1b 100644 --- a/libao2/ao_jack.c +++ b/libao2/ao_jack.c @@ -258,9 +258,9 @@ static int init(int rate, int channels, int format, int flags) { mp_msg(MSGT_AO, MSGL_FATAL, "[JACK] no physical ports available\n"); goto err_out; } - num_ports = 1; - while (matching_ports[num_ports]) num_ports++; - if (channels > num_ports) channels = num_ports; + i = 1; + while (matching_ports[i]) i++; + if (channels > i) channels = i; num_ports = channels; // create out output ports -- cgit v1.2.3