summaryrefslogtreecommitdiff
path: root/muted.c
diff options
context:
space:
mode:
authorJosh Roberson <josh@asteriasgi.com>2005-07-18 04:23:33 +0000
committerJosh Roberson <josh@asteriasgi.com>2005-07-18 04:23:33 +0000
commite380aa745235a0c18964e57d2bd982269a007389 (patch)
treeb8d9904ca3f05a40c48e52bc9a580fa08a7230b6 /muted.c
parent25041974ef62a550c2e3c9a72c4d290bf6b808b8 (diff)
Forgot to remove printf() used in debugging
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6149 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 {