Forgot to remove printf() used in debugging

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6149 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Josh Roberson 21 years ago
parent 25041974ef
commit e380aa7452

@ -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 {

Loading…
Cancel
Save