mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 06:07:29 +01:00
fix type typo
This commit is contained in:
parent
bc8ccea212
commit
81d8eaa216
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue