Fred: replace the C++ sthe 'and' by the C style '&&' for compatibility.
This commit is contained in:
parent
2fd0269662
commit
d31a1f708c
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ TACAN::searchChannel (const string& _channel){
|
|||
frequency_khz = freq->get_freq();
|
||||
SG_LOG( SG_INSTR, SG_DEBUG, "freq output " << frequency_khz );
|
||||
//check sanity
|
||||
if (frequency_khz >9620 and frequency_khz <= 12130)return frequency_khz/100;
|
||||
if (frequency_khz >9620 && frequency_khz <= 12130)return frequency_khz/100;
|
||||
}
|
||||
return frequency_khz = 0;
|
||||
} // end TACAN::searchChannel
|
||||
|
|
Loading…
Reference in a new issue