Additional warning fixes; run brew update before brew install for hamlib

This commit is contained in:
Charles J. Cliffe
2019-01-10 21:23:26 -05:00
parent e75387c25d
commit c57a123130
5 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ ModemBase *ModemFSK::factory() {
return new ModemFSK;
}
int ModemFSK::checkSampleRate(long long sampleRate, int audioSampleRate) {
int ModemFSK::checkSampleRate(long long sampleRate, int /* audioSampleRate */) {
double minSps = pow(2.0,bps);
double nextSps = (double(sampleRate) / double(sps));
if (nextSps < minSps) {