From c05129574c71f20e7bd4d1758616f52ca5841c49 Mon Sep 17 00:00:00 2001 From: piyush0411 Date: Sun, 21 Jun 2020 01:55:44 +0530 Subject: [PATCH] Fixed an error --- src/core/receiver/gnss_block_factory.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/receiver/gnss_block_factory.cc b/src/core/receiver/gnss_block_factory.cc index ffda7818d..6b94d8858 100644 --- a/src/core/receiver/gnss_block_factory.cc +++ b/src/core/receiver/gnss_block_factory.cc @@ -610,7 +610,7 @@ std::unique_ptr GNSSBlockFactory::GetChannel_7X( { LOG(ERROR) << "Acquisition and Tracking blocks must have the same input data type!"; } - + std::unique_ptr acq_ = GetAcqBlock(configuration, "Acquisition_7X" + appendix1, acq, 1, 0); std::unique_ptr trk_ = GetTrkBlock(configuration, "Tracking_7X" + appendix2, trk, 1, 1); std::unique_ptr tlm_ = GetTlmBlock(configuration, "TelemetryDecoder_7X" + appendix3, tlm, 1, 1); @@ -619,7 +619,7 @@ std::unique_ptr GNSSBlockFactory::GetChannel_7X( std::move(acq_), std::move(trk_), std::move(tlm_), - "Channel", "7X", queue)); + "Channel", "7X", queue); return channel_; }