summaryrefslogtreecommitdiff
path: root/driver_superstar2.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2015-03-25 15:29:56 -0700
committerGary E. Miller <gem@rellim.com>2015-03-25 15:29:56 -0700
commitac3d44a1912795d06bcc2501741c9c3deaba8a0d (patch)
treef2318dfab56b6bab1364aab2a1f10eefd26c0537 /driver_superstar2.c
parent2aef1774198f855bc300c4fd64098b5416e7c01f (diff)
downloadgpsd-ac3d44a1912795d06bcc2501741c9c3deaba8a0d.tar.gz
Fix more splint: Line expects to suppress X errors, found 0 errors
Diffstat (limited to 'driver_superstar2.c')
-rw-r--r--driver_superstar2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver_superstar2.c b/driver_superstar2.c
index e46d2df5..e57463b1 100644
--- a/driver_superstar2.c
+++ b/driver_superstar2.c
@@ -115,8 +115,8 @@ superstar2_msg_navsol_lla(struct gps_device_t *session,
mask |= LATLON_SET | ALTITUDE_SET | SPEED_SET | TRACK_SET | CLIMB_SET;
session->gpsdata.satellites_used = (int)getub(buf, 71) & 0x0f;
- /*@i3@*/ session->gpsdata.dop.hdop = getleu16(buf, 66) * 0.1;
- /*@i3@*/ session->gpsdata.dop.vdop = getleu16(buf, 68) * 0.1;
+ session->gpsdata.dop.hdop = getleu16(buf, 66) * 0.1;
+ session->gpsdata.dop.vdop = getleu16(buf, 68) * 0.1;
/* other DOP if available */
mask |= DOP_SET | USED_IS;