summaryrefslogtreecommitdiff
path: root/serial.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-03-20 08:30:54 -0400
committerEric S. Raymond <esr@thyrsus.com>2015-03-20 08:30:54 -0400
commit8edcc43df17e994395b7680c12b53644754c234d (patch)
tree0f8be52a049cab182a64eddf4a55baf2c5938bb6 /serial.c
parentc91de3f456d3ae90ea51b15001182390f1ee3e73 (diff)
downloadgpsd-8edcc43df17e994395b7680c12b53644754c234d.tar.gz
Float elimination. All regression tests pass.
Diffstat (limited to 'serial.c')
-rw-r--r--serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/serial.c b/serial.c
index 8f287869..53bdb092 100644
--- a/serial.c
+++ b/serial.c
@@ -161,7 +161,7 @@ void gpsd_tty_init(struct gps_device_t *session)
session->gpsdata.gps_fd = -1;
session->saved_baud = -1;
session->zerokill = false;
- session->reawake = (timestamp_t)0;
+ session->reawake = (time_t)0;
}
#if defined(__CYGWIN__)