Commit 73ee6be2 authored by Giuseppe Carboni's avatar Giuseppe Carboni Committed by aorlati
Browse files

Fix #238, fixed the return value error of...

Fix #238, fixed the return value error of `SRTLPBandReceiver/src/Configuration.cpp::getTaperTable()`. (#241)

This has been tested on site with a quick observation, it appears to be the correct solution, but it should be tested again properly when completing the 64-bit migration.
parent b22786ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -762,7 +762,7 @@ DWORD CConfiguration::getTaperTable(double * &freq,double *&taper, short feed) c
			count++;
			count++;
        }
        }
    }
    }
    return m_taperVectorLen;
    return count;
}
}


DWORD CConfiguration::getLeftMarkTable(double *& freq, double *& markValue, short feed) const
DWORD CConfiguration::getLeftMarkTable(double *& freq, double *& markValue, short feed) const