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:
@@ -104,7 +104,7 @@ void TestMOSyncWorker::setSamplerate(int samplerate)
|
||||
|
||||
void TestMOSyncWorker::setLog2Interpolation(unsigned int log2Interpolation)
|
||||
{
|
||||
if ((log2Interpolation < 0) || (log2Interpolation > 6)) {
|
||||
if (log2Interpolation > 6) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user