Forgot to remove printf() used in debugging

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6149 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Josh Roberson
2005-07-18 04:23:33 +00:00
parent 25041974ef
commit e380aa7452

View File

@@ -325,7 +325,6 @@ static float getvol(void)
err = AudioDeviceGetProperty(device, channels[0], false, kAudioDevicePropertyVolumeScalar, &size, &volumeL); err = AudioDeviceGetProperty(device, channels[0], false, kAudioDevicePropertyVolumeScalar, &size, &volumeL);
if (!err) if (!err)
err = AudioDeviceGetProperty(device, channels[1], false, kAudioDevicePropertyVolumeScalar, &size, &volumeR); err = AudioDeviceGetProperty(device, channels[1], false, kAudioDevicePropertyVolumeScalar, &size, &volumeR);
printf("volumeL = %f - volumeR = %f\n", volumeL, volumeR);
if (!err) if (!err)
vol = (volumeL < volumeR) ? volumeR : volumeL; vol = (volumeL < volumeR) ? volumeR : volumeL;
else { else {