aboutsummaryrefslogtreecommitdiffstats
path: root/muted.c
diff options
context:
space:
mode:
authortwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-18 04:23:33 +0000
committertwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-18 04:23:33 +0000
commite72928bc18f3e17754212bdb4920fe557aea5cc6 (patch)
treeb8d9904ca3f05a40c48e52bc9a580fa08a7230b6 /muted.c
parentd4f3114e438d628f842aaf686d6d0b0697fb4e99 (diff)
Forgot to remove printf() used in debugging
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6149 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'muted.c')
-rwxr-xr-xmuted.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/muted.c b/muted.c
index fd0b130c0..d82c3beec 100755
--- a/muted.c
+++ b/muted.c
@@ -325,7 +325,6 @@ static float getvol(void)
err = AudioDeviceGetProperty(device, channels[0], false, kAudioDevicePropertyVolumeScalar, &size, &volumeL);
if (!err)
err = AudioDeviceGetProperty(device, channels[1], false, kAudioDevicePropertyVolumeScalar, &size, &volumeR);
- printf("volumeL = %f - volumeR = %f\n", volumeL, volumeR);
if (!err)
vol = (volumeL < volumeR) ? volumeR : volumeL;
else {