mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 09:36:33 +01:00
fix type typo
This commit is contained in:
parent
cba23cac6e
commit
f3b2c02749
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue