Skip to content

Commit

Permalink
A couple of compilation warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Mar 4, 2024
1 parent c6dd0bb commit b1a54d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/feature/demodanalyzer/demodanalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ void DemodAnalyzer::handleDataPipeToBeDeleted(int reason, QObject *object)
}

int DemodAnalyzer::webapiActionsPost(
const QStringList& featureActionsKeys,
const QStringList&,
SWGSDRangel::SWGFeatureActions& query,
QString& errorMessage) {

Expand Down
4 changes: 2 additions & 2 deletions sdrbase/dsp/kissengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit b1a54d8

Please sign in to comment.