1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2026-04-29 02:01:25 +00:00
This commit is contained in:
Carles Fernandez
2018-12-03 22:08:19 +01:00
parent 1743a773b5
commit 327fec627c
80 changed files with 327 additions and 649 deletions

View File

@@ -79,7 +79,7 @@ const char *opt2sep(const solopt_t *opt)
{
if (!*opt->sep)
return " ";
else if (!strcmp(opt->sep, "\\t"))
if (!strcmp(opt->sep, "\\t"))
return "\t";
return opt->sep;
}
@@ -343,7 +343,7 @@ int decode_nmea(char *buff, sol_t *sol)
{
return decode_nmearmc(val + 1, n - 1, sol);
}
else if (!strcmp(val[0], "$GPGGA"))
if (!strcmp(val[0], "$GPGGA"))
{
return decode_nmeagga(val + 1, n - 1, sol);
}