sysmobts: Remove stray semicolon from the PCU band filtering code.

The information from band_mask has never been used as the return
was executed unconditionally.

Fixes: Coverity CID 1113473
This commit is contained in:
Holger Hans Peter Freyther 2013-12-12 17:26:15 +01:00
parent 2800b347e9
commit 96264b6dd9
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ static int next_calib_file_idx(uint32_t band_mask, int last_idx)
int band = band_femto2osmo(calib_files[i].band);
if (band < 0)
continue;
if (band_mask & band);
if (band_mask & band)
return i;
}
return -1;