summaryrefslogtreecommitdiff
path: root/driver_navcom.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_navcom.c
parent2aef1774198f855bc300c4fd64098b5416e7c01f (diff)
downloadgpsd-ac3d44a1912795d06bcc2501741c9c3deaba8a0d.tar.gz
Fix more splint: Line expects to suppress X errors, found 0 errors
Diffstat (limited to 'driver_navcom.c')
-rw-r--r--driver_navcom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_navcom.c b/driver_navcom.c
index 18f56f3c..661cc854 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -1268,7 +1268,7 @@ static bool navcom_speed(struct gps_device_t *session,
/* Proceed to construct our message */
port = session->driver.navcom.physical_port;
- /*@i1@*/ port_selection = (port ? port : (uint8_t) 0xff) | baud;
+ port_selection = (port ? port : (uint8_t) 0xff) | baud;
/* Send it off */
navcom_cmd_0x11(session, port_selection);