1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Fixed -Wtype-limits warnings

This commit is contained in:
f4exb
2020-11-14 19:18:41 +01:00
parent 7a6636b63a
commit 6285235257
6 changed files with 4 additions and 16 deletions
@@ -104,7 +104,7 @@ void TestMOSyncWorker::setSamplerate(int samplerate)
void TestMOSyncWorker::setLog2Interpolation(unsigned int log2Interpolation)
{
if ((log2Interpolation < 0) || (log2Interpolation > 6)) {
if (log2Interpolation > 6) {
return;
}