summaryrefslogtreecommitdiff
path: root/libgps_shm.c
diff options
context:
space:
mode:
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 (;;) {