From a4e48eac4d170a6dd7f4de56b499cd2641a08c96 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 3 Mar 2015 21:56:17 +0100 Subject: [PATCH] Removing warning --- src/algorithms/PVT/gnuradio_blocks/gps_l1_ca_pvt_cc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithms/PVT/gnuradio_blocks/gps_l1_ca_pvt_cc.cc b/src/algorithms/PVT/gnuradio_blocks/gps_l1_ca_pvt_cc.cc index 4329d5c52..0532ae1a8 100644 --- a/src/algorithms/PVT/gnuradio_blocks/gps_l1_ca_pvt_cc.cc +++ b/src/algorithms/PVT/gnuradio_blocks/gps_l1_ca_pvt_cc.cc @@ -169,7 +169,7 @@ int gps_l1_ca_pvt_cc::general_work (int noutput_items, gr_vector_int &ninput_ite if (global_gps_utc_model_map.size() > 0) { // UTC MODEL data is shared for all the GPS satellites. Read always at a locked channel - int i = 0; + signed int i = 0; while(true) { if (in[i][0].Flag_valid_pseudorange == true) @@ -188,7 +188,7 @@ int gps_l1_ca_pvt_cc::general_work (int noutput_items, gr_vector_int &ninput_ite if (global_gps_iono_map.size() > 0) { // IONO data is shared for all the GPS satellites. Read always at a locked channel - int i = 0; + signed int i = 0; while(true) { if (in[i][0].Flag_valid_pseudorange == true)