mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-25 04:53:27 -04:00
A couple of compilation warning fixes
This commit is contained in:
@@ -710,7 +710,7 @@ void DemodAnalyzer::handleDataPipeToBeDeleted(int reason, QObject *object)
|
||||
}
|
||||
|
||||
int DemodAnalyzer::webapiActionsPost(
|
||||
const QStringList& featureActionsKeys,
|
||||
const QStringList&,
|
||||
SWGSDRangel::SWGFeatureActions& query,
|
||||
QString& errorMessage) {
|
||||
|
||||
|
||||
@@ -29,9 +29,9 @@ QString KissEngine::getName() const
|
||||
void KissEngine::configure(int n, bool inverse)
|
||||
{
|
||||
m_fft.configure(n, inverse);
|
||||
if(n > m_in.size())
|
||||
if(n > (int) m_in.size())
|
||||
m_in.resize(n);
|
||||
if(n > m_out.size())
|
||||
if(n > (int) m_out.size())
|
||||
m_out.resize(n);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user