1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-28 23:10:51 +00:00

Fix warning

This commit is contained in:
Carles Fernandez 2017-11-20 08:22:04 +01:00
parent f719b4a22a
commit d8c924a2ca

View File

@ -214,7 +214,7 @@ int hybrid_observables_cc::save_matfile()
double * PRN_aux = new double [d_nchannels * num_epoch];
double * Flag_valid_pseudorange_aux = new double[d_nchannels * num_epoch];
unsigned int k = 0;
for(unsigned int j = 0; j < num_epoch; j++ )
for(long int j = 0; j < num_epoch; j++ )
{
for(unsigned int i = 0; i < d_nchannels; i++ )
{