fixed missing static keyword

pull/273/merge
Morgan Diepart 2023-10-22 14:08:22 -07:00 zatwierdzone przez Silvano Seva
rodzic c60445d5be
commit 3df8657b16
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -51,7 +51,7 @@ enum Band
* @return a value from @enum Band identifying the band to which the frequency
* belong.
*/
inline Band getBandFromFrequency(const freq_t freq)
static inline enum Band getBandFromFrequency(const freq_t freq)
{
if((freq >= BAND_VHF_LO) && (freq <= BAND_VHF_HI)) return BND_VHF;
if((freq >= BAND_UHF_LO) && (freq <= BAND_UHF_HI)) return BND_UHF;