fix type typo
authorRobin Gareus <robin@gareus.org>
Tue, 20 May 2014 22:19:15 +0000 (00:19 +0200)
committerRobin Gareus <robin@gareus.org>
Tue, 20 May 2014 22:19:15 +0000 (00:19 +0200)
libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp

index 10da07fef19900af8f5c31a93297b559e23734f1..8e8ee466dc34ced1e2cf586d3b704d860f3c51c4 100644 (file)
@@ -2658,7 +2658,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)
@@ -2671,7 +2671,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)