summaryrefslogtreecommitdiff
path: root/driver_geostar.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-07-02 17:46:35 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-07-02 17:46:35 -0400
commitb149e377bcfd0a8f08990287ffc5c44afd9d3786 (patch)
tree0c0b16d24cd758a1b84b42bfbc1bd833aa740ec2 /driver_geostar.c
parent59c4396daed8216a6a0faaa51f9a95ce503201af (diff)
downloadgpsd-b149e377bcfd0a8f08990287ffc5c44afd9d3786.tar.gz
Suppress some silly signedness warnings.
Diffstat (limited to 'driver_geostar.c')
-rw-r--r--driver_geostar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_geostar.c b/driver_geostar.c
index 2a3d7e88..7f6a5c09 100644
--- a/driver_geostar.c
+++ b/driver_geostar.c
@@ -126,7 +126,7 @@ static gps_mask_t geostar_analyze(struct gps_device_t *session)
uint16_t uw1, uw2;
uint32_t ul1, ul2, ul3, ul4, ul5;
double d1, d2, d3, d4, d5;
- unsigned char buf[BUFSIZ];
+ char buf[BUFSIZ];
char buf2[BUFSIZ];
if (session->packet.type != GEOSTAR_PACKET) {