correct the conversion of ConstellationType

map GNSS_SV_TYPE_GPS to GnssConstellationType::GPS

Bug: 36644020
CRs-fixed: 2025520
Change-Id: I28fe4b5aff17495f50b0ae7fb0465bbd82a66627
This commit is contained in:
Baili Feng 2017-03-28 12:00:07 +08:00
parent e72716080e
commit 4fc5a782cf

View file

@ -70,7 +70,7 @@ void convertGnssConstellationType(GnssSvType& in, GnssConstellationType& out)
{
switch(in) {
case GNSS_SV_TYPE_GPS:
out = GnssConstellationType::UNKNOWN;
out = GnssConstellationType::GPS;
break;
case GNSS_SV_TYPE_SBAS:
out = GnssConstellationType::SBAS;