From: Josh Roberson Date: Mon, 18 Jul 2005 04:23:33 +0000 (+0000) Subject: Forgot to remove printf() used in debugging X-Git-Tag: 1.2.0-beta1~258 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e380aa745235a0c18964e57d2bd982269a007389;p=thirdparty%2Fasterisk.git Forgot to remove printf() used in debugging git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6149 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/muted.c b/muted.c index fd0b130c00..d82c3beecc 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 {