sfbence

Results 1 issues of sfbence

In the NMEASentenceRMC.cpp : ``` // Speed over ground knots if (GetField(pData, szField, 6, c_nMaxField) == CNMEAParserData::ERROR_OK) { m_SentenceData.m_dSpeedKnots = atol(szField); } ``` the use of atol() is incorrect, it...