summaryrefslogtreecommitdiff
path: root/libgps_shm.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2015-03-13 11:40:23 -0700
committerGary E. Miller <gem@rellim.com>2015-03-13 11:40:23 -0700
commitb5d26621ff5f019cad92cc731150f2d5a26cefc9 (patch)
treec2518c85f1d6153c8fae023eec7e6edaeea44e4c /libgps_shm.c
parenta85900b69f1b85f14a74945db12161573a315ca9 (diff)
downloadgpsd-b5d26621ff5f019cad92cc731150f2d5a26cefc9.tar.gz
remove extraneous semicolon
Diffstat (limited to 'libgps_shm.c')
-rw-r--r--libgps_shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgps_shm.c b/libgps_shm.c
index 11ca6514..8eb38041 100644
--- a/libgps_shm.c
+++ b/libgps_shm.c
@@ -79,7 +79,7 @@ bool gps_shm_waiting(const struct gps_data_t *gpsdata, int timeout)
{
volatile struct shmexport_t *shared = (struct shmexport_t *)PRIVATE(gpsdata)->shmseg;
volatile bool newdata = false;
- timestamp_t endtime = timestamp() + (((double)timeout)/1000000);;
+ timestamp_t endtime = timestamp() + (((double)timeout)/1000000);
/* busy-waiting sucks, but there's not really an alternative */
for (;;) {