Fix Windows compile warnings.

This commit is contained in:
Jonathan Naylor 2018-11-06 20:44:59 +00:00
parent e847711d17
commit 9444ecad16
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@ void CMobileGPS::sendReport()
if (pLatitude == NULL || pLongitude == NULL)
return;
float latitude = ::atof(pLatitude);
float longitude = ::atof(pLongitude);
float latitude = float(::atof(pLatitude));
float longitude = float(::atof(pLongitude));
m_network->writeHomePosition(latitude, longitude);
}