1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-10 06:46:03 +00:00

Fix clang warning: equality comparison with extraneous parentheses

This commit is contained in:
Carles Fernandez
2020-07-02 10:53:51 +02:00
parent 829d48fff2
commit c412d0a3f5

View File

@@ -392,7 +392,7 @@ void Ad9361FpgaSignalSource::run_DMA_process(const std::string &FreqBand, const
//**************************************************************************
int nsamples = 0;
while ((file_completed == 0))
while (file_completed == 0)
{
unsigned int dma_index = 0;