mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 10:05:46 -05:00
Fix "More '%' conversions than data arguments"
Fixes a compiler warning: .../sdrangel/sdrbase/audio/audioinputdevice.cpp:106: warning: format ‘%d’ expects a matching ‘int’ argument [-Wformat=]
This commit is contained in:
parent
acc06658ec
commit
613d9e4005
@ -103,7 +103,7 @@ bool AudioInputDevice::start(int device, int rate)
|
||||
if (!devInfo.isFormatSupported(m_audioFormat))
|
||||
{
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
qWarning("AudioInputDevice::start: %d Hz S16_LE audio format not supported.");
|
||||
qWarning("AudioInputDevice::start: %d Hz S16_LE audio format not supported.", rate);
|
||||
#else
|
||||
m_audioFormat = devInfo.deviceInfo().nearestFormat(m_audioFormat);
|
||||
qWarning("AudioInputDevice::start: %d Hz S16_LE audio format not supported. Nearest is sampleRate: %d channelCount: %d sampleSize: %d sampleType: %d",
|
||||
|
Loading…
Reference in New Issue
Block a user