From f3b2c02749c4eee13e5e6dfcdb149fd43d21e233 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 21 May 2014 00:19:15 +0200 Subject: [PATCH] fix type typo --- .../wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp index b0266d78a2..9f9935343d 100644 --- a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp +++ b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp @@ -2755,7 +2755,7 @@ WTErr WCMRCoreAudioDeviceManager::generateDeviceListImpl() pDevInfo->m_AvailableSampleRates = availableSampleRates; //Get max input channels - uint32 maxInputChannels; + uint32_t maxInputChannels; wErr = getDeviceMaxInputChannels(pDevInfo->m_DeviceId, maxInputChannels); if (wErr != eNoErr) @@ -2768,7 +2768,7 @@ WTErr WCMRCoreAudioDeviceManager::generateDeviceListImpl() pDevInfo->m_MaxInputChannels = maxInputChannels; //Get max output channels - uint32 maxOutputChannels; + uint32_t maxOutputChannels; wErr = getDeviceMaxOutputChannels(pDevInfo->m_DeviceId, maxOutputChannels); if (wErr != eNoErr) @@ -3034,4 +3034,4 @@ OSStatus WCMRCoreAudioDeviceManager::HardwarePropertyChangeCallback (AudioHardwa } return 0; -} \ No newline at end of file +}