fix type typo

This commit is contained in:
Robin Gareus 2014-05-21 00:19:15 +02:00 committed by Paul Davis
parent cba23cac6e
commit f3b2c02749

View file

@ -2755,7 +2755,7 @@ WTErr WCMRCoreAudioDeviceManager::generateDeviceListImpl()
pDevInfo->m_AvailableSampleRates = availableSampleRates; pDevInfo->m_AvailableSampleRates = availableSampleRates;
//Get max input channels //Get max input channels
uint32 maxInputChannels; uint32_t maxInputChannels;
wErr = getDeviceMaxInputChannels(pDevInfo->m_DeviceId, maxInputChannels); wErr = getDeviceMaxInputChannels(pDevInfo->m_DeviceId, maxInputChannels);
if (wErr != eNoErr) if (wErr != eNoErr)
@ -2768,7 +2768,7 @@ WTErr WCMRCoreAudioDeviceManager::generateDeviceListImpl()
pDevInfo->m_MaxInputChannels = maxInputChannels; pDevInfo->m_MaxInputChannels = maxInputChannels;
//Get max output channels //Get max output channels
uint32 maxOutputChannels; uint32_t maxOutputChannels;
wErr = getDeviceMaxOutputChannels(pDevInfo->m_DeviceId, maxOutputChannels); wErr = getDeviceMaxOutputChannels(pDevInfo->m_DeviceId, maxOutputChannels);
if (wErr != eNoErr) if (wErr != eNoErr)
@ -3034,4 +3034,4 @@ OSStatus WCMRCoreAudioDeviceManager::HardwarePropertyChangeCallback (AudioHardwa
} }
return 0; return 0;
} }