1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Fix compiler warnings

This commit is contained in:
Jon Beniston 2020-11-12 13:31:01 +00:00
parent 9a3585a756
commit 55e7b56ae9
3 changed files with 1 additions and 3 deletions

View File

@ -957,7 +957,7 @@ void ADSBDemodGUI::handleADSB(
}
else
{
qDebug() << "ADSBDemodGUI::handleADSB: Invalid latitude " << latitude << " for " << hex << aircraft->m_icao
qDebug() << "ADSBDemodGUI::handleADSB: Invalid latitude " << latitude << " for " << Qt::hex << aircraft->m_icao
<< " m_cprLat[0] " << aircraft->m_cprLat[0]
<< " m_cprLat[1] " << aircraft->m_cprLat[1];
aircraft->m_cprValid[0] = false;

View File

@ -70,7 +70,6 @@ struct AircraftInformation {
if ((file = fopen(utfFilename.constData(), "r")) != NULL)
{
char row[2048];
int idx;
if (fgets(row, sizeof(row), file))
{

View File

@ -82,7 +82,6 @@ struct AirportInformation {
if ((file = fopen(utfFilename.constData(), "r")) != NULL)
{
char row[2048];
int idx;
if (fgets(row, sizeof(row), file))
{