We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 630ee95 + b99738f commit 1969e71Copy full SHA for 1969e71
1 file changed
src/rtksvr.c
@@ -427,7 +427,8 @@ static void decodefile(rtksvr_t *svr, int index)
427
rtksvrlock(svr);
428
429
if (svr->nav.peph) free(svr->nav.peph);
430
- svr->nav.ne=svr->nav.nemax=nav.ne;
+ svr->nav.ne = nav.ne;
431
+ svr->nav.nemax = nav.nemax;
432
svr->nav.peph=nav.peph;
433
svr->ftime[index]=utc2gpst(timeget());
434
strcpy(svr->files[index],file);
@@ -445,7 +446,8 @@ static void decodefile(rtksvr_t *svr, int index)
445
446
447
448
if (svr->nav.pclk) free(svr->nav.pclk);
- svr->nav.nc=svr->nav.ncmax=nav.nc;
449
+ svr->nav.nc = nav.nc;
450
+ svr->nav.ncmax = nav.ncmax;
451
svr->nav.pclk=nav.pclk;
452
453
0 commit comments