summaryrefslogtreecommitdiff
path: root/core/LocApiBase.cpp
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@quicinc.com>2017-08-16 02:35:56 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-08-16 02:35:56 -0700
commit6f104ee746ffb7f1484cabb007bf5e8fa795a5c0 (patch)
tree7a51452bbf9bc8e4e43ece563d74cf882632953f /core/LocApiBase.cpp
parentbe2a3f9a690e23f6a9910ec71308fae2f0fb65a5 (diff)
parentbe7f077122deebc468cf609cb5739a845ce7beec (diff)
downloadgps-6f104ee746ffb7f1484cabb007bf5e8fa795a5c0.tar.gz
Merge "Fix to report bearing and speed accuracy"
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r--core/LocApiBase.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp
index 303d03a..e0845de 100644
--- a/core/LocApiBase.cpp
+++ b/core/LocApiBase.cpp
@@ -544,10 +544,12 @@ enum loc_api_adapter_err LocApiBase::
}
enum loc_api_adapter_err LocApiBase::
- getBestAvailableZppFix(LocGpsLocation & zppLoc, LocPosTechMask & tech_mask)
+ getBestAvailableZppFix(LocGpsLocation & zppLoc, GpsLocationExtended & locationExtended,
+ LocPosTechMask & tech_mask)
{
memset(&zppLoc, 0, sizeof(zppLoc));
memset(&tech_mask, 0, sizeof(tech_mask));
+ memset(&locationExtended, 0, sizeof (locationExtended));
DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
}