mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 01:39:05 -05:00
Fix compiler warnings
This commit is contained in:
parent
9a3585a756
commit
55e7b56ae9
@ -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;
|
||||
|
@ -70,7 +70,6 @@ struct AircraftInformation {
|
||||
if ((file = fopen(utfFilename.constData(), "r")) != NULL)
|
||||
{
|
||||
char row[2048];
|
||||
int idx;
|
||||
|
||||
if (fgets(row, sizeof(row), 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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user