summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-05-21 00:19:15 +0200
committerRobin Gareus <robin@gareus.org>2014-05-21 00:19:15 +0200
commit81d8eaa216b168d84150e361484dc3fd4ee80859 (patch)
tree010d86c20cab8e1df267106d93cfaeb95053cafd
parentbc8ccea212d6400a8c9ae3f025439f66c24a29d4 (diff)
fix type typo
-rw-r--r--libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp
index 10da07fef1..8e8ee466dc 100644
--- a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp
+++ b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRCoreAudioDeviceManager.cpp
@@ -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)