summaryrefslogtreecommitdiff
path: root/drivers.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 /drivers.c
parent2aef1774198f855bc300c4fd64098b5416e7c01f (diff)
downloadgpsd-ac3d44a1912795d06bcc2501741c9c3deaba8a0d.tar.gz
Fix more splint: Line expects to suppress X errors, found 0 errors
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers.c b/drivers.c
index 03dd3ffa..69959a6e 100644
--- a/drivers.c
+++ b/drivers.c
@@ -1115,7 +1115,7 @@ static bool mtk3301_rate_switcher(struct gps_device_t *session, double rate)
{
char buf[78];
- /*@i1@*/ unsigned int milliseconds = 1000 * rate;
+ unsigned int milliseconds = 1000 * rate;
if (rate > 1)
milliseconds = 1000;
else if (rate < 0.2)