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